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

Diff for /src/usr.bin/ssh/clientloop.c between version 1.282 and 1.283

version 1.282, 2016/01/29 23:04:46 version 1.283, 2016/02/01 21:18:17
Line 310 
Line 310 
         proto[0] = data[0] = xauthfile[0] = xauthdir[0] = '\0';          proto[0] = data[0] = xauthfile[0] = xauthdir[0] = '\0';
   
         if (!client_x11_display_valid(display)) {          if (!client_x11_display_valid(display)) {
                 logit("DISPLAY \"%s\" invalid; disabling X11 forwarding",                  if (display != NULL)
                     display);                          logit("DISPLAY \"%s\" invalid; disabling X11 forwarding",
                               display);
                 return -1;                  return -1;
         }          }
         if (xauth_path != NULL && stat(xauth_path, &st) == -1) {          if (xauth_path != NULL && stat(xauth_path, &st) == -1) {

Legend:
Removed from v.1.282  
changed lines
  Added in v.1.283