diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-03-14 16:10:06 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-03-14 16:10:06 +0000 |
commit | ee19a8071a63c4272114dbae5125dc78174b1473 (patch) | |
tree | be61674ba127339cdecee34abf31361b6c9b1a2d /fetchmail.c | |
parent | 5d8baab700b5ea100ccc93495071605e094bd84e (diff) | |
download | fetchmail-ee19a8071a63c4272114dbae5125dc78174b1473.tar.gz fetchmail-ee19a8071a63c4272114dbae5125dc78174b1473.tar.bz2 fetchmail-ee19a8071a63c4272114dbae5125dc78174b1473.zip |
Lower fastuidl default to 4 (was 10). Patch by Sunil Shetye.
svn path=/branches/BRANCH_6-3/; revision=4740
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index 6325d8f9..7712820b 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -970,7 +970,7 @@ static int load_params(int argc, char **argv, int optind) def_opts.remotename = user; def_opts.listener = SMTP_MODE; def_opts.fetchsizelimit = 100; - def_opts.fastuidl = 10; + def_opts.fastuidl = 4; /* get the location of rcfile */ rcfiledir[0] = 0; |