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

Diff for /src/usr.bin/ssh/monitor.c between version 1.111 and 1.112

version 1.111, 2011/05/15 08:09:01 version 1.112, 2011/05/20 03:25:45
Line 584 
Line 584 
   
  out:   out:
         buffer_put_string(m, &options, sizeof(options));          buffer_put_string(m, &options, sizeof(options));
         if (options.banner != NULL)  
                 buffer_put_cstring(m, options.banner);  #define M_CP_STROPT(x) do { \
                   if (options.x != NULL) \
                           buffer_put_cstring(m, options.x); \
           } while (0)
           /* See comment in servconf.h */
           COPY_MATCH_STRING_OPTS();
   #undef M_CP_STROPT
   
         debug3("%s: sending MONITOR_ANS_PWNAM: %d", __func__, allowed);          debug3("%s: sending MONITOR_ANS_PWNAM: %d", __func__, allowed);
         mm_request_send(sock, MONITOR_ANS_PWNAM, m);          mm_request_send(sock, MONITOR_ANS_PWNAM, m);
   

Legend:
Removed from v.1.111  
changed lines
  Added in v.1.112