aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-02-18 02:35:30 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-02-18 02:35:30 +0000
commit6a1b0f83e980b788b15054cc7d3223a8d0ed83ab (patch)
tree73a317f8788d12ae2a97523678306e4e0528237e /driver.c
parent7592b0c0805429cb8d73ce52eec4da82ce36e4bb (diff)
downloadfetchmail-6a1b0f83e980b788b15054cc7d3223a8d0ed83ab.tar.gz
fetchmail-6a1b0f83e980b788b15054cc7d3223a8d0ed83ab.tar.bz2
fetchmail-6a1b0f83e980b788b15054cc7d3223a8d0ed83ab.zip
Janos Farkas's fixes.
svn path=/trunk/; revision=897
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver.c b/driver.c
index fb47457b..98669ecf 100644
--- a/driver.c
+++ b/driver.c
@@ -1512,7 +1512,7 @@ va_dcl
{
char *cp;
- if (shroud && (cp = strstr(buf, shroud)))
+ if (shroud && shroud[0] && (cp = strstr(buf, shroud)))
{
char *sp;
@@ -1582,7 +1582,7 @@ va_dcl
{
char *cp;
- if (shroud && (cp = strstr(buf, shroud)))
+ if (shroud && shroud[0] && (cp = strstr(buf, shroud)))
{
char *sp;