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

Diff for /src/usr.bin/tmux/cmd-detach-client.c between version 1.10 and 1.11

version 1.10, 2012/06/18 09:15:22 version 1.11, 2012/07/11 07:10:15
Line 24 
Line 24 
  * Detach a client.   * Detach a client.
  */   */
   
 int     cmd_detach_client_exec(struct cmd *, struct cmd_ctx *);  enum cmd_retval  cmd_detach_client_exec(struct cmd *, struct cmd_ctx *);
   
 const struct cmd_entry cmd_detach_client_entry = {  const struct cmd_entry cmd_detach_client_entry = {
         "detach-client", "detach",          "detach-client", "detach",
Line 36 
Line 36 
         cmd_detach_client_exec          cmd_detach_client_exec
 };  };
   
 int  enum cmd_retval
 cmd_detach_client_exec(struct cmd *self, struct cmd_ctx *ctx)  cmd_detach_client_exec(struct cmd *self, struct cmd_ctx *ctx)
 {  {
         struct args     *args = self->args;          struct args     *args = self->args;
Line 53 
Line 53 
         if (args_has(args, 's')) {          if (args_has(args, 's')) {
                 s = cmd_find_session(ctx, args_get(args, 's'), 0);                  s = cmd_find_session(ctx, args_get(args, 's'), 0);
                 if (s == NULL)                  if (s == NULL)
                         return (-1);                          return (CMD_RETURN_ERROR);
   
                 for (i = 0; i < ARRAY_LENGTH(&clients); i++) {                  for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
                         c = ARRAY_ITEM(&clients, i);                          c = ARRAY_ITEM(&clients, i);
Line 63 
Line 63 
         } else {          } else {
                 c = cmd_find_client(ctx, args_get(args, 't'));                  c = cmd_find_client(ctx, args_get(args, 't'));
                 if (c == NULL)                  if (c == NULL)
                         return (-1);                          return (CMD_RETURN_ERROR);
   
                 if (args_has(args, 'a')) {                  if (args_has(args, 'a')) {
                         for (i = 0; i < ARRAY_LENGTH(&clients); i++) {                          for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
Line 76 
Line 76 
                         server_write_client(c, msgtype, NULL, 0);                          server_write_client(c, msgtype, NULL, 0);
         }          }
   
         return (0);          return (CMD_RETURN_NORMAL);
 }  }

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11