aboutsummaryrefslogtreecommitdiffstats
path: root/pop2.c
diff options
context:
space:
mode:
Diffstat (limited to 'pop2.c')
-rw-r--r--pop2.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/pop2.c b/pop2.c
index c2e5ecc4..0ca40e04 100644
--- a/pop2.c
+++ b/pop2.c
@@ -24,6 +24,10 @@ int pop2_ok (FILE *sockfp, char *argbuf)
pound_arg = equal_arg = -1;
if (fgets(buf, sizeof(buf), sockfp)) {
+ if (buf[strlen(buf)-1] == '\n')
+ buf[strlen(buf)-1] = '\0';
+ if (buf[strlen(buf)-1] == '\r')
+ buf[strlen(buf)-1] = '\r';
if (outlevel == O_VERBOSE)
error(0, 0, "POP2< %s", buf);