diff options
-rw-r--r-- | lib/ChangeLog | 5 | ||||
-rw-r--r-- | lib/command.c | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog index 4410fb24..ad81ed5f 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,8 @@ +2005-01-14 Greg Troxel <gdt@fnord.ir.bbn.com> + + * command.c (print_version): Don't print host.name if it is NULL. + Fixes segfault on Solaris reported by Goetz von Escher <goetz@open.ch> + 2005-01-12 Andrew J. Schorr <ajschorr@alumni.princeton.edu> * sigevent.c: (trap_default_signals) Use the SA_SIGINFO flag to 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); } |