[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.260 and 1.261

version 1.260, 2015/02/02 01:57:44 version 1.261, 2015/04/17 04:12:35
Line 2008 
Line 2008 
 {  {
         u_int i;          u_int i;
   
           if (count <= 0)
                   return;
         printf("%s", lookup_opcode_name(code));          printf("%s", lookup_opcode_name(code));
         for (i = 0; i < count; i++)          for (i = 0; i < count; i++)
                 printf(" %s",  vals[i]);                  printf(" %s",  vals[i]);
Line 2053 
Line 2055 
         dump_cfg_int(sMaxSessions, o->max_sessions);          dump_cfg_int(sMaxSessions, o->max_sessions);
         dump_cfg_int(sClientAliveInterval, o->client_alive_interval);          dump_cfg_int(sClientAliveInterval, o->client_alive_interval);
         dump_cfg_int(sClientAliveCountMax, o->client_alive_count_max);          dump_cfg_int(sClientAliveCountMax, o->client_alive_count_max);
           dump_cfg_int(sStreamLocalBindMask, o->fwd_opts.streamlocal_bind_mask);
   
         /* formatted integer arguments */          /* formatted integer arguments */
         dump_cfg_fmtint(sPermitRootLogin, o->permit_root_login);          dump_cfg_fmtint(sPermitRootLogin, o->permit_root_login);
Line 2094 
Line 2097 
         dump_cfg_fmtint(sGatewayPorts, o->fwd_opts.gateway_ports);          dump_cfg_fmtint(sGatewayPorts, o->fwd_opts.gateway_ports);
         dump_cfg_fmtint(sUseDNS, o->use_dns);          dump_cfg_fmtint(sUseDNS, o->use_dns);
         dump_cfg_fmtint(sAllowTcpForwarding, o->allow_tcp_forwarding);          dump_cfg_fmtint(sAllowTcpForwarding, o->allow_tcp_forwarding);
           dump_cfg_fmtint(sAllowAgentForwarding, o->allow_agent_forwarding);
         dump_cfg_fmtint(sAllowStreamLocalForwarding, o->allow_streamlocal_forwarding);          dump_cfg_fmtint(sAllowStreamLocalForwarding, o->allow_streamlocal_forwarding);
         dump_cfg_fmtint(sUsePrivilegeSeparation, use_privsep);          dump_cfg_fmtint(sUsePrivilegeSeparation, use_privsep);
         dump_cfg_fmtint(sFingerprintHash, o->fingerprint_hash);          dump_cfg_fmtint(sFingerprintHash, o->fingerprint_hash);
Line 2110 
Line 2114 
         dump_cfg_string(sRevokedKeys, o->revoked_keys_file);          dump_cfg_string(sRevokedKeys, o->revoked_keys_file);
         dump_cfg_string(sAuthorizedPrincipalsFile,          dump_cfg_string(sAuthorizedPrincipalsFile,
             o->authorized_principals_file);              o->authorized_principals_file);
         dump_cfg_string(sVersionAddendum, o->version_addendum);          dump_cfg_string(sVersionAddendum, *o->version_addendum == '\0'
               ? "none" : o->version_addendum);
         dump_cfg_string(sAuthorizedKeysCommand, o->authorized_keys_command);          dump_cfg_string(sAuthorizedKeysCommand, o->authorized_keys_command);
         dump_cfg_string(sAuthorizedKeysCommandUser, o->authorized_keys_command_user);          dump_cfg_string(sAuthorizedKeysCommandUser, o->authorized_keys_command_user);
         dump_cfg_string(sHostKeyAgent, o->host_key_agent);          dump_cfg_string(sHostKeyAgent, o->host_key_agent);
Line 2130 
Line 2135 
             o->authorized_keys_files);              o->authorized_keys_files);
         dump_cfg_strarray(sHostKeyFile, o->num_host_key_files,          dump_cfg_strarray(sHostKeyFile, o->num_host_key_files,
              o->host_key_files);               o->host_key_files);
         dump_cfg_strarray(sHostKeyFile, o->num_host_cert_files,          dump_cfg_strarray(sHostCertificate, o->num_host_cert_files,
              o->host_cert_files);               o->host_cert_files);
         dump_cfg_strarray(sAllowUsers, o->num_allow_users, o->allow_users);          dump_cfg_strarray(sAllowUsers, o->num_allow_users, o->allow_users);
         dump_cfg_strarray(sDenyUsers, o->num_deny_users, o->deny_users);          dump_cfg_strarray(sDenyUsers, o->num_deny_users, o->deny_users);

Legend:
Removed from v.1.260  
changed lines
  Added in v.1.261