diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-27 04:23:23 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-27 04:23:23 +0000 |
commit | f4afe8b0b1fb6eda4684e68071d9c751b5642f38 (patch) | |
tree | 673ed4f7ab728e89b6f6fc8bce63823f7c318743 /fetchmail.h | |
parent | eabdfb5e1ebf83147017c57db3659e7b2e8ecad1 (diff) | |
download | fetchmail-f4afe8b0b1fb6eda4684e68071d9c751b5642f38.tar.gz fetchmail-f4afe8b0b1fb6eda4684e68071d9c751b5642f38.tar.bz2 fetchmail-f4afe8b0b1fb6eda4684e68071d9c751b5642f38.zip |
Fix core dump bug in default-user logic.
svn path=/trunk/; revision=397
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index 2ceec1d8..352676fd 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -139,7 +139,7 @@ extern char *rcfile; /* path name of rc file */ extern char *idfile; /* path name of UID file */ extern int linelimit; /* limit # lines retrieved per site */ extern int versioninfo; /* emit only version info */ -extern char *dfltuser; /* invoking user */ +extern char *user; /* name of invoking user */ #ifdef HAVE_PROTOTYPES |