summaryrefslogtreecommitdiffstats
path: root/handler.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-10-16 09:55:50 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-10-16 09:55:50 +0000
commitae4d346e0af3f1c3e16b58ef99a9c92a99d18581 (patch)
tree6b198fa03d23f03d52b8a176df267504ab671966 /handler.c
parent1c753436c673c6016c92c0dd8f4ba786b9a3387f (diff)
Nits from Vikas.
Diffstat (limited to 'handler.c')
-rw-r--r--handler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/handler.c b/handler.c
index 80da7bc9..23f541e2 100644
--- a/handler.c
+++ b/handler.c
@@ -320,7 +320,7 @@ void mutt_decode_uuencoded (STATE *s, BODY *b, int istext)
if ((fgets(tmps, sizeof(tmps), s->fpin)) == NULL)
return;
len -= strlen(tmps);
- if ((!strncmp (tmps, "begin", 5)) && isspace (tmps[5]))
+ if ((!strncmp (tmps, "begin", 5)) && ISSPACE (tmps[5]))
break;
}
while(len > 0)