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

Diff for /src/usr.bin/ftp/main.c between version 1.118 and 1.119

version 1.118, 2017/01/21 08:33:07 version 1.119, 2017/01/24 23:47:34
Line 98 
Line 98 
         "depth",          "depth",
 #define SSL_MUSTSTAPLE  6  #define SSL_MUSTSTAPLE  6
         "muststaple",          "muststaple",
   #define SSL_NOVERIFYTIME        7
           "noverifytime",
         NULL          NULL
 };  };
   
Line 151 
Line 153 
                         break;                          break;
                 case SSL_MUSTSTAPLE:                  case SSL_MUSTSTAPLE:
                         tls_config_ocsp_require_stapling(tls_config);                          tls_config_ocsp_require_stapling(tls_config);
                           break;
                   case SSL_NOVERIFYTIME:
                           tls_config_insecure_noverifytime(tls_config);
                         break;                          break;
                 default:                  default:
                         errx(1, "unknown -S suboption `%s'",                          errx(1, "unknown -S suboption `%s'",

Legend:
Removed from v.1.118  
changed lines
  Added in v.1.119