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

Diff for /src/usr.bin/ssh/mux.c between version 1.89 and 1.90

version 1.89, 2021/06/04 05:02:40 version 1.90, 2021/07/13 23:48:36
Line 60 
Line 60 
 extern Options options;  extern Options options;
 extern int stdin_null_flag;  extern int stdin_null_flag;
 extern char *host;  extern char *host;
 extern int subsystem_flag;  
 extern struct sshbuf *command;  extern struct sshbuf *command;
 extern volatile sig_atomic_t quit_pending;  extern volatile sig_atomic_t quit_pending;
   
Line 1880 
Line 1879 
             (r = sshbuf_put_u32(m, tty_flag)) != 0 ||              (r = sshbuf_put_u32(m, tty_flag)) != 0 ||
             (r = sshbuf_put_u32(m, options.forward_x11)) != 0 ||              (r = sshbuf_put_u32(m, options.forward_x11)) != 0 ||
             (r = sshbuf_put_u32(m, options.forward_agent)) != 0 ||              (r = sshbuf_put_u32(m, options.forward_agent)) != 0 ||
             (r = sshbuf_put_u32(m, subsystem_flag)) != 0 ||              (r = sshbuf_put_u32(m, options.session_type == SESSION_TYPE_SUBSYSTEM)) != 0 ||
             (r = sshbuf_put_u32(m, echar)) != 0 ||              (r = sshbuf_put_u32(m, echar)) != 0 ||
             (r = sshbuf_put_cstring(m, term == NULL ? "" : term)) != 0 ||              (r = sshbuf_put_cstring(m, term == NULL ? "" : term)) != 0 ||
             (r = sshbuf_put_stringb(m, command)) != 0)              (r = sshbuf_put_stringb(m, command)) != 0)

Legend:
Removed from v.1.89  
changed lines
  Added in v.1.90