[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.134 and 1.135

version 1.134, 2020/09/06 09:03:13 version 1.135, 2020/09/06 09:49:11
Line 288 
Line 288 
                         if (tls_config_parse_protocols(&protocols, str) != 0)                          if (tls_config_parse_protocols(&protocols, str) != 0)
                                 errx(1, "failed to parse TLS protocols");                                  errx(1, "failed to parse TLS protocols");
                         if (tls_config_set_protocols(tls_config, protocols) != 0)                          if (tls_config_set_protocols(tls_config, protocols) != 0)
                                 errx(1, "failed to set TLS protocols");                                  errx(1, "failed to set TLS protocols: %s",
                                       tls_config_error(tls_config));
                         break;                          break;
                 default:                  default:
                         errx(1, "unknown -S suboption `%s'",                          errx(1, "unknown -S suboption `%s'",

Legend:
Removed from v.1.134  
changed lines
  Added in v.1.135