X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Fmain.c;h=ee9bc7af9e381177f064c73759420e9a8a85a448;hp=5dc9bb0332da9dd9533606769ca4029e5078e29e;hb=ae3c268719b10f2dd20575a1ecc5c0355065daf3;hpb=0f56f4056ada5a827a9174170b7d1fc92f0e9e6a diff --git a/src/main.c b/src/main.c index 5dc9bb03..ee9bc7af 100644 --- a/src/main.c +++ b/src/main.c @@ -146,6 +146,7 @@ Logging and input file:\n\ -B, --base=URL prepends URL to relative links in -F -i file.\n\ --sslcertfile=FILE optional client certificate.\n\ --sslcertkey=KEYFILE optional keyfile for this certificate.\n\ + --sslegdsock=FILE socket to the egd daemon(random data source).\n\ \n"), stdout); fputs (_("\ Download:\n\ @@ -320,6 +321,7 @@ main (int argc, char *const *argv) #ifdef HAVE_SSL { "sslcertfile", required_argument, NULL, 158 }, { "sslcertkey", required_argument, NULL, 159 }, + { "sslegdsock", required_argument, NULL, 166 }, #endif /* HAVE_SSL */ { "wait", required_argument, NULL, 'w' }, { "waitretry", required_argument, NULL, 152 }, @@ -540,6 +542,9 @@ GNU General Public License for more details.\n")); case 159: setval ("sslcertkey", optarg); break; + case 166: + setval ("sslegdsock", optarg); + break; #endif /* HAVE_SSL */ case 'A': setval ("accept", optarg);