diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-05-22 18:42:39 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-05-22 18:42:39 +0000 |
commit | 703f7886706bd5a7fc34db647edb3fbea5553c0a (patch) | |
tree | c66d018293eacfff8a838934e9e28478ac4d8ab3 /options.c | |
parent | 0a337ef438e4c5902171516e76666869a87747c6 (diff) | |
download | fetchmail-703f7886706bd5a7fc34db647edb3fbea5553c0a.tar.gz fetchmail-703f7886706bd5a7fc34db647edb3fbea5553c0a.tar.bz2 fetchmail-703f7886706bd5a7fc34db647edb3fbea5553c0a.zip |
Added idfile.
svn path=/trunk/; revision=1794
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -191,8 +191,8 @@ struct query *ctl; /* option record to be initialized */ break; case 'i': case LA_IDFILE: - idfile = (char *) xmalloc(strlen(optarg)+1); - strcpy(idfile,optarg); + cmd_idfile = (char *) xmalloc(strlen(optarg)+1); + strcpy(cmd_idfile,optarg); break; case 'p': case LA_PROTOCOL: |