mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
Add admin error domain
Just the addition of VIR_FROM_ADMIN to the enum of error domains. Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
parent
fb5a0d3388
commit
653acbfd62
@ -4,7 +4,7 @@
|
|||||||
* Description: Provides the interfaces of the libvirt library to handle
|
* Description: Provides the interfaces of the libvirt library to handle
|
||||||
* errors raised while using the library.
|
* errors raised while using the library.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006, 2010-2012 Red Hat, Inc.
|
* Copyright (C) 2006-2015 Red Hat, Inc.
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
@ -126,6 +126,7 @@ typedef enum {
|
|||||||
|
|
||||||
VIR_FROM_POLKIT = 60, /* Error from polkit code */
|
VIR_FROM_POLKIT = 60, /* Error from polkit code */
|
||||||
VIR_FROM_THREAD = 61, /* Error from thread utils */
|
VIR_FROM_THREAD = 61, /* Error from thread utils */
|
||||||
|
VIR_FROM_ADMIN = 62, /* Error from admin backend */
|
||||||
|
|
||||||
# ifdef VIR_ENUM_SENTINELS
|
# ifdef VIR_ENUM_SENTINELS
|
||||||
VIR_ERR_DOMAIN_LAST
|
VIR_ERR_DOMAIN_LAST
|
||||||
|
@ -133,6 +133,7 @@ VIR_ENUM_IMPL(virErrorDomain, VIR_ERR_DOMAIN_LAST,
|
|||||||
|
|
||||||
"Polkit", /* 60 */
|
"Polkit", /* 60 */
|
||||||
"Thread jobs",
|
"Thread jobs",
|
||||||
|
"Admin Interface",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user