From 4c92bdfc1ab3eba9d4a52802498fd59568e857c2 Mon Sep 17 00:00:00 2001 From: dlezcano Date: Tue, 25 Nov 2008 12:51:52 +0000 Subject: [PATCH] Added the console error value From: Daniel Lezcano Added the console error value Signed-off-by: Daniel Lezcano --- src/lxc/error.c | 1 + src/lxc/error.h | 1 + 2 files changed, 2 insertions(+) diff --git a/src/lxc/error.c b/src/lxc/error.c index 5673da09f..8f2dbc8b5 100644 --- a/src/lxc/error.c +++ b/src/lxc/error.c @@ -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", diff --git a/src/lxc/error.h b/src/lxc/error.h index 5f6b25e03..e0296440f 100644 --- a/src/lxc/error.h +++ b/src/lxc/error.h @@ -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,