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

Diff for /src/usr.bin/ssh/servconf.c between version 1.156 and 1.157

version 1.156, 2006/07/17 12:06:00 version 1.157, 2006/07/19 08:56:41
Line 320 
Line 320 
         { "printlastlog", sPrintLastLog, SSHCFG_GLOBAL },          { "printlastlog", sPrintLastLog, SSHCFG_GLOBAL },
         { "ignorerhosts", sIgnoreRhosts, SSHCFG_GLOBAL },          { "ignorerhosts", sIgnoreRhosts, SSHCFG_GLOBAL },
         { "ignoreuserknownhosts", sIgnoreUserKnownHosts, SSHCFG_GLOBAL },          { "ignoreuserknownhosts", sIgnoreUserKnownHosts, SSHCFG_GLOBAL },
         { "x11forwarding", sX11Forwarding, SSHCFG_GLOBAL },          { "x11forwarding", sX11Forwarding, SSHCFG_ALL },
         { "x11displayoffset", sX11DisplayOffset, SSHCFG_GLOBAL },          { "x11displayoffset", sX11DisplayOffset, SSHCFG_ALL },
         { "x11uselocalhost", sX11UseLocalhost, SSHCFG_GLOBAL },          { "x11uselocalhost", sX11UseLocalhost, SSHCFG_ALL },
         { "xauthlocation", sXAuthLocation, SSHCFG_GLOBAL },          { "xauthlocation", sXAuthLocation, SSHCFG_GLOBAL },
         { "strictmodes", sStrictModes, SSHCFG_GLOBAL },          { "strictmodes", sStrictModes, SSHCFG_GLOBAL },
         { "permitemptypasswords", sEmptyPasswd, SSHCFG_GLOBAL },          { "permitemptypasswords", sEmptyPasswd, SSHCFG_GLOBAL },
Line 1204 
Line 1204 
                 dst->allow_tcp_forwarding = src->allow_tcp_forwarding;                  dst->allow_tcp_forwarding = src->allow_tcp_forwarding;
         if (src->gateway_ports != -1)          if (src->gateway_ports != -1)
                 dst->gateway_ports = src->gateway_ports;                  dst->gateway_ports = src->gateway_ports;
           if (src->x11_display_offset != -1)
                   dst->x11_display_offset = src->x11_display_offset;
           if (src->x11_forwarding != -1)
                   dst->x11_forwarding = src->x11_forwarding;
           if (src->x11_use_localhost != -1)
                   dst->x11_use_localhost = src->x11_use_localhost;
 }  }
   
 void  void

Legend:
Removed from v.1.156  
changed lines
  Added in v.1.157