POSIX only guarantees uname() will return a non-negative value on

success.

ok nicm@
pull/1/head
Matthew Dempsky 2011-04-19 20:12:47 +00:00
parent 0f97ac4221
commit 3970853feb
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ cmd_server_info_exec(unused struct cmd *self, struct cmd_ctx *ctx)
ctx->print(ctx, "pid %ld, started %s", (long) getpid(), tim);
ctx->print(
ctx, "socket path %s, debug level %d", socket_path, debug_level);
if (uname(&un) == 0) {
if (uname(&un) >= 0) {
ctx->print(ctx, "system is %s %s %s %s",
un.sysname, un.release, un.version, un.machine);
}