[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.26 and 1.27

version 1.26, 2012/03/15 10:36:00 version 1.27, 2012/07/11 07:10:15
Line 31 
Line 31 
  * Show various information about server.   * Show various information about server.
  */   */
   
 int     cmd_server_info_exec(struct cmd *, struct cmd_ctx *);  enum cmd_retval  cmd_server_info_exec(struct cmd *, struct cmd_ctx *);
   
 const struct cmd_entry cmd_server_info_entry = {  const struct cmd_entry cmd_server_info_entry = {
         "server-info", "info",          "server-info", "info",
Line 44 
Line 44 
 };  };
   
 /* ARGSUSED */  /* ARGSUSED */
 int  enum cmd_retval
 cmd_server_info_exec(unused struct cmd *self, struct cmd_ctx *ctx)  cmd_server_info_exec(unused struct cmd *self, struct cmd_ctx *ctx)
 {  {
         struct tty_term                         *term;          struct tty_term                         *term;
Line 179 
Line 179 
                     job->cmd, job->fd, job->pid, job->status);                      job->cmd, job->fd, job->pid, job->status);
         }          }
   
         return (0);          return (CMD_RETURN_NORMAL);
 }  }

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27