[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.100 and 1.101

version 1.100, 2015/02/17 22:39:32 version 1.101, 2015/02/22 14:55:41
Line 202 
Line 202 
                 tls_config = tls_config_new();                  tls_config = tls_config_new();
                 if (tls_config == NULL)                  if (tls_config == NULL)
                         errx(1, "tls config failed");                          errx(1, "tls config failed");
                 tls_config_set_protocols(tls_config,                  tls_config_set_protocols(tls_config, TLS_PROTOCOLS_ALL);
                     TLS_PROTOCOLS_ALL);                  if (tls_config_set_ciphers(tls_config, "compat") != 0)
                           errx(1, "tls set ciphers failed");
         }          }
   
 #endif /* !SMALL */  #endif /* !SMALL */
   
         httpuseragent = NULL;          httpuseragent = NULL;
   
         while ((ch = getopt(argc, argv,          while ((ch = getopt(argc, argv,

Legend:
Removed from v.1.100  
changed lines
  Added in v.1.101