[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.23 and 1.24

version 1.23, 2011/01/26 00:11:47 version 1.24, 2011/01/26 01:54:56
Line 175 
Line 175 
   
         ctx->print(ctx, "Jobs:");          ctx->print(ctx, "Jobs:");
         LIST_FOREACH(job, &all_jobs, lentry) {          LIST_FOREACH(job, &all_jobs, lentry) {
                 ctx->print(ctx, "%s [fd=%d, pid=%d, status=%d, flags=0x%x]",                  ctx->print(ctx, "%s [fd=%d, pid=%d, status=%d]",
                     job->cmd, job->fd, job->pid, job->status, job->flags);                      job->cmd, job->fd, job->pid, job->status);
         }          }
   
         return (0);          return (0);

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