aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-09-19 15:42:35 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-09-19 15:42:35 +0000
commita2389b61cd8a3344a68cfb0be777a40da7d9bb0b (patch)
tree6257a0de87a3500e5c88e18138e5a8b4a1f65aa6 /fetchmail.c
parent576090c8a061f7e183616265d70a8208f73a6d76 (diff)
downloadfetchmail-a2389b61cd8a3344a68cfb0be777a40da7d9bb0b.tar.gz
fetchmail-a2389b61cd8a3344a68cfb0be777a40da7d9bb0b.tar.bz2
fetchmail-a2389b61cd8a3344a68cfb0be777a40da7d9bb0b.zip
Compilation cleanups.
svn path=/trunk/; revision=1374
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 60b0ed17..54dc45c6 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -64,6 +64,7 @@ int cmd_daemon; /* if --daemon was set */
char *idfile; /* UID list file */
flag versioninfo; /* emit only version info */
char *user; /* the name of the invoking user */
+char *home;
char *fetchmailhost; /* the name of the host running fetchmail */
char *program_name; /* the name to prefix error messages with */
@@ -90,7 +91,6 @@ int main (int argc, char **argv)
{
int st, bkgd = FALSE;
int parsestatus, implicitmode = FALSE;
- struct passwd *pw;
struct query *ctl;
FILE *lockfp;
netrc_entry *netrc_list;
@@ -517,7 +517,7 @@ static int load_params(int argc, char **argv, int optind)
{
int implicitmode, st;
struct passwd *pw;
- struct query def_opts, *ctl, *mp;
+ struct query def_opts, *ctl;
memset(&def_opts, '\0', sizeof(struct query));
def_opts.smtp_socket = -1;