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

Diff for /src/usr.bin/tmux/client.c between version 1.59 and 1.60

version 1.59, 2012/08/27 21:35:11 version 1.60, 2012/09/03 08:48:57
Line 281 
Line 281 
   
         /* Set the event and dispatch. */          /* Set the event and dispatch. */
         client_update_event();          client_update_event();
         event_add (&client_stdin, NULL);  
         event_dispatch();          event_dispatch();
   
         /* Print the exit message, if any, and exit. */          /* Print the exit message, if any, and exit. */
Line 515 
Line 514 
   
                         event_del(&client_stdin);                          event_del(&client_stdin);
                         client_attached = 1;                          client_attached = 1;
                           break;
                   case MSG_STDIN:
                           if (datalen != 0)
                                   fatalx("bad MSG_STDIN size");
   
                           event_add(&client_stdin, NULL);
                         break;                          break;
                 case MSG_STDOUT:                  case MSG_STDOUT:
                         if (datalen != sizeof stdoutdata)                          if (datalen != sizeof stdoutdata)

Legend:
Removed from v.1.59  
changed lines
  Added in v.1.60