From 72f43bdcc97c774ea1c294057d99cb51be67950e Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Thu, 1 Jul 2004 10:33:01 +0000 Subject: [PATCH] fixed misinterpretation of '--xid' introduced by rev 1.17 git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@1608 94cd875c-1c1d-0410-91d2-eb244daf1a30 --- util-vserver/src/vlimit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util-vserver/src/vlimit.c b/util-vserver/src/vlimit.c index 9ff8921..304bb72 100644 --- a/util-vserver/src/vlimit.c +++ b/util-vserver/src/vlimit.c @@ -367,11 +367,11 @@ int main (int argc, char *argv[]) else switch (c) { case CMD_HELP : showHelp(1, argv[0], 0); case CMD_VERSION : showVersion(); - case CMD_XID : case 'a' : show_all = true; break; case 'n' : do_resolve = false; break; case CMD_DIR : dir = optarg; break; case CMD_MISSINGOK: missing_ok = true; break; + case CMD_XID : /*@fallthrough@*/ case 'c' : ctx = Evc_xidopt2xid(optarg,true); break; case 'd' : fmt_func = utilvserver_fmt_uint64; break; case 'M' : -- 1.8.1.5