diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/main.c b/src/main.c index 7b7dcdf02..3c33025ae 100644 --- a/src/main.c +++ b/src/main.c @@ -439,14 +439,16 @@ static int getparameter(char *flag, /* f or -long-flag */ GetStr(&config->useragent, nextarg); break; case 'b': /* cookie string coming up: */ - if(strchr(nextarg, '=')) { + if(nextarg[0] == '@') { + nextarg++; + } + else if(strchr(nextarg, '=')) { /* A cookie string must have a =-letter */ GetStr(&config->cookie, nextarg); + break; } - else { - /* We have a cookie file to read from! */ - GetStr(&config->cookiefile, nextarg); - } + /* We have a cookie file to read from! */ + GetStr(&config->cookiefile, nextarg); break; case 'B': /* use type ASCII when transfering ftp files */ |