]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
Added the console error value
authordlezcano <dlezcano>
Tue, 25 Nov 2008 12:51:52 +0000 (12:51 +0000)
committerdlezcano <dlezcano>
Tue, 25 Nov 2008 12:51:52 +0000 (12:51 +0000)
From: Daniel Lezcano <dlezcano@fr.ibm.com>

Added the console error value

Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
src/lxc/error.c
src/lxc/error.h

index 5673da09f465f89980d588a05511a29b286ae5d1..8f2dbc8b538b4d793d18a58d609799cd466756a2 100644 (file)
@@ -46,6 +46,7 @@ static const char *const catalogue[] = {
        [LXC_ERROR_SETUP_MOUNT] = "Failed to setup the mount points",
        [LXC_ERROR_SETUP_UTSNAME] = "Failed to setup the utsname",
        [LXC_ERROR_SETUP_NETWORK] = "Failed to setup the network",
+       [LXC_ERROR_SETUP_CONSOLE] = "Failed to setup the console",
        [LXC_ERROR_SETUP_ROOTFS] = "Failed to setup the root fs",
 
        [LXC_ERROR_INTERNAL] = "Internal system error",
index 5f6b25e03f0a6262401766d9f581a528f7f89259..e0296440fcde6d1034eb6b593027abbe1399396a 100644 (file)
@@ -45,6 +45,7 @@ typedef enum {
        LXC_ERROR_SETUP_MOUNT,
        LXC_ERROR_SETUP_UTSNAME,
        LXC_ERROR_SETUP_NETWORK,
+       LXC_ERROR_SETUP_CONSOLE,
        LXC_ERROR_SETUP_ROOTFS,
 
        LXC_ERROR_INTERNAL,