diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-06-11 15:09:02 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-11 15:09:02 +0000 |
commit | 4cfffd6c4a50df7de82bfcaa2c0466be07801290 (patch) | |
tree | 0fb1fbefdd39e2bce969e0638a451d9182de53f5 | |
parent | e9f1c12f0f4791978afdea358d67dbe3a096cd21 (diff) |
cut up the string in more pieces for <512 bytes strings
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index 3e7052de9..5294f6880 100644 --- a/src/main.c +++ b/src/main.c @@ -347,8 +347,8 @@ static void help(void) " --cacert <file> CA certifciate to verify peer against (SSL)\n" " --capath <directory> CA directory (made using c_rehash) to verify\n" " peer against (SSL, NOT Windows)\n" - " --ciphers <list> What SSL ciphers to use (SSL)\n" - " --connect-timeout <seconds> Maximum time allowed for connection\n" + " --ciphers <list> What SSL ciphers to use (SSL)"); + puts(" --connect-timeout <seconds> Maximum time allowed for connection\n" " -f/--fail Fail silently (no output at all) on errors (H)\n" " -F/--form <name=content> Specify HTTP POST data (H)\n" " -g/--globoff Disable URL sequences and ranges using {} and []\n" |