diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-07-02 19:13:13 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-07-02 19:13:13 +0000 |
commit | 971a363228832ae0210491c2629f964b8bb7aea7 (patch) | |
tree | b4eb9f7a2b6d8361f6e54f81c447cc93200dad0a /fetchmail.c | |
parent | a7599402b2e4d8c5cef1da9fe12159640fd15812 (diff) | |
download | fetchmail-971a363228832ae0210491c2629f964b8bb7aea7.tar.gz fetchmail-971a363228832ae0210491c2629f964b8bb7aea7.tar.bz2 fetchmail-971a363228832ae0210491c2629f964b8bb7aea7.zip |
Some name changes.
svn path=/trunk/; revision=24
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/fetchmail.c b/fetchmail.c index de95b785..9d39d904 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -277,10 +277,7 @@ int showversioninfo() int dump_options (options) struct optrec *options; { - if (!options->loginid[0]) - printf(" No password set\n"); - else - printf(" Username = '%s'\n", options->username); + printf(" Username = '%s'\n", options->remotename); printf(" Password = '%s'\n", options->password); printf(" Protocol is "); @@ -551,15 +548,7 @@ struct optrec *options; /* punch in a null terminator */ if (*argp != '\0') *(argp++) = '\0'; - - /* check for macros */ - if (strcmp(mda_argv[argi],"$u") == 0) - mda_argv[argi] = - strcpy((char *) malloc(strlen(options->loginid)+1),options->loginid); - else - ; /* no macros to expand */ - - } + } mda_argv[argi] = (char *) 0; } |