diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-11-17 16:45:10 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-11-17 16:45:10 +0000 |
commit | 060061a7c8f7e9578e359af3f9c18ac66af24de0 (patch) | |
tree | 18fdb6109aeac3d6bda9aa010501c7064b4103c4 /options.c | |
parent | 0d956b2fa9e3dc4a72cfba11b8fb05de03100b82 (diff) | |
download | fetchmail-060061a7c8f7e9578e359af3f9c18ac66af24de0.tar.gz fetchmail-060061a7c8f7e9578e359af3f9c18ac66af24de0.tar.bz2 fetchmail-060061a7c8f7e9578e359af3f9c18ac66af24de0.zip |
Postmaster option fix.
svn path=/trunk/; revision=2184
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -292,6 +292,7 @@ struct query *ctl; /* option record to be initialized */ break; case LA_POSTMASTER: rctl->postmaster = (char *) xmalloc(strlen(optarg)+1); + strcpy(rctl->postmaster,optarg); break; case 'p': case LA_PROTOCOL: |