diff options
Diffstat (limited to 'lib/command.c')
-rw-r--r-- | lib/command.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/command.c b/lib/command.c index 9136900c..d2e93e11 100644 --- a/lib/command.c +++ b/lib/command.c @@ -145,8 +145,10 @@ level_match(const char *s) void print_version (const char *progname) { - printf ("%s version %s (%s)\n", progname, QUAGGA_VERSION, host.name); - printf ("%s\n", QUAGGA_COPYRIGHT); + printf ("%s version %s", progname, QUAGGA_VERSION); + if (host.name != NULL) + printf (" (%s)", host.name); + printf ("\n%s\n", QUAGGA_COPYRIGHT); } |