[BACK]Return to cmd-server-info.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/Attic/cmd-server-info.c between version 1.24 and 1.25

version 1.24, 2011/01/26 01:54:56 version 1.25, 2011/04/19 20:12:47
Line 71 
Line 71 
         ctx->print(ctx, "pid %ld, started %s", (long) getpid(), tim);          ctx->print(ctx, "pid %ld, started %s", (long) getpid(), tim);
         ctx->print(          ctx->print(
             ctx, "socket path %s, debug level %d", socket_path, debug_level);              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",                  ctx->print(ctx, "system is %s %s %s %s",
                     un.sysname, un.release, un.version, un.machine);                      un.sysname, un.release, un.version, un.machine);
         }          }

Legend:
Removed from v.1.24  
changed lines
  Added in v.1.25