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

Diff for /src/usr.bin/openssl/s_client.c between version 1.13 and 1.14

version 1.13, 2015/04/14 12:56:36 version 1.14, 2015/07/17 16:07:44
Line 223 
Line 223 
         BIO_printf(bio_err, " -quiet        - no s_client output\n");          BIO_printf(bio_err, " -quiet        - no s_client output\n");
         BIO_printf(bio_err, " -ign_eof      - ignore input eof (default when -quiet)\n");          BIO_printf(bio_err, " -ign_eof      - ignore input eof (default when -quiet)\n");
         BIO_printf(bio_err, " -no_ign_eof   - don't ignore input eof\n");          BIO_printf(bio_err, " -no_ign_eof   - don't ignore input eof\n");
         BIO_printf(bio_err, " -ssl3         - just use SSLv3\n");  
         BIO_printf(bio_err, " -tls1_2       - just use TLSv1.2\n");          BIO_printf(bio_err, " -tls1_2       - just use TLSv1.2\n");
         BIO_printf(bio_err, " -tls1_1       - just use TLSv1.1\n");          BIO_printf(bio_err, " -tls1_1       - just use TLSv1.1\n");
         BIO_printf(bio_err, " -tls1         - just use TLSv1\n");          BIO_printf(bio_err, " -tls1         - just use TLSv1\n");
Line 472 
Line 471 
                         nbio_test = 1;                          nbio_test = 1;
                 else if (strcmp(*argv, "-state") == 0)                  else if (strcmp(*argv, "-state") == 0)
                         state = 1;                          state = 1;
                 else if (strcmp(*argv, "-ssl3") == 0)  
                         meth = SSLv3_client_method();  
                 else if (strcmp(*argv, "-tls1_2") == 0)                  else if (strcmp(*argv, "-tls1_2") == 0)
                         meth = TLSv1_2_client_method();                          meth = TLSv1_2_client_method();
                 else if (strcmp(*argv, "-tls1_1") == 0)                  else if (strcmp(*argv, "-tls1_1") == 0)

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14