* [PATCH 3/3] Make xenconsoled -V do something useful
@ 2005-11-01 19:11 Anthony Liguori
0 siblings, 0 replies; only message in thread
From: Anthony Liguori @ 2005-11-01 19:11 UTC (permalink / raw)
To: xen-devel
[-- Attachment #1: Type: text/plain, Size: 1 bytes --]
[-- Attachment #2: 7575-xenconsole.diff --]
[-- Type: text/plain, Size: 993 bytes --]
# HG changeset patch
# User Anthony Liguori <anthony@codemonkey.ws>
# Node ID 7c590b202af0e1d57db8764579bce12b1a98563b
# Parent a44fde5c4e15bdf2f8b42fa41439d6725a5363dc
Make the -V option of xenconsoled actually do something.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
diff -r a44fde5c4e15 -r 7c590b202af0 tools/console/daemon/main.c
--- a/tools/console/daemon/main.c Tue Nov 1 11:09:57 2005 -0500
+++ b/tools/console/daemon/main.c Tue Nov 1 11:15:23 2005 -0500
@@ -30,10 +30,14 @@
#include "utils.h"
#include "io.h"
-void usage(char *prg)
+static void usage(char *name)
{
- fprintf(stderr,
- "usage: %s [-h] [-V] [-v] [-i]\n", prg);
+ printf("Usage: %s [-h] [-V] [-v] [-i]\n", name);
+}
+
+static void version(char *name)
+{
+ printf("Xen Console Daemon 3.0\n");
}
int main(int argc, char **argv)
@@ -58,7 +62,7 @@
usage(argv[0]);
exit(0);
case 'V':
- //version(argv[0]);
+ version(argv[0]);
exit(0);
case 'v':
syslog_option |= LOG_PERROR;
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-11-01 19:11 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-01 19:11 [PATCH 3/3] Make xenconsoled -V do something useful Anthony Liguori
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.