diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-02-20 10:27:35 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-02-20 10:27:35 +0000 |
commit | 6f390a7fe4dfd8640c9866ad5d47ca2ffff47105 (patch) | |
tree | 2b63ca16b70ee739ea28d7f5a994f23e8b008df3 /fetchmail.c | |
parent | 577b940eaa2daf3048ca3a4880304c80883178a4 (diff) | |
download | fetchmail-6f390a7fe4dfd8640c9866ad5d47ca2ffff47105.tar.gz fetchmail-6f390a7fe4dfd8640c9866ad5d47ca2ffff47105.tar.bz2 fetchmail-6f390a7fe4dfd8640c9866ad5d47ca2ffff47105.zip |
Better debugging of UID logic.
svn path=/trunk/; revision=2763
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index dbd95ba2..63f9ef5c 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -1587,7 +1587,7 @@ static void dump_params (struct runctl *runp, if (ctl->server.protocol == P_POP3 #if INET6_ENABLE - && !strcmp(ctl->server.service, KPOP_PORT) + && ctl->server.service && !strcmp(ctl->server.service, KPOP_PORT) #else /* INET6_ENABLE */ && ctl->server.port == KPOP_PORT #endif /* INET6_ENABLE */ |