summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-03-03 19:35:18 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-03-03 19:35:18 +0000
commit0f26b03dadf962abfff86f095d75e23e716e87f8 (patch)
tree117a63418260802d5570e739ff8fde362300775d /libexec
parentb078ebe8d6bc04a6307dd0c210fbadb4ac00d495 (diff)
oops, removed a char from rend
Diffstat (limited to 'libexec')
-rw-r--r--libexec/spamd/spamd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/spamd/spamd.c b/libexec/spamd/spamd.c
index e7b100da54c..36764c409c0 100644
--- a/libexec/spamd/spamd.c
+++ b/libexec/spamd/spamd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: spamd.c,v 1.19 2003/03/03 14:47:37 deraadt Exp $ */
+/* $OpenBSD: spamd.c,v 1.20 2003/03/03 19:35:17 deraadt Exp $ */
/*
* Copyright (c) 2002 Theo de Raadt. All rights reserved.
@@ -498,7 +498,7 @@ initcon(struct con *cp, int fd, struct sockaddr_in *sin)
cp->ol = strlen(cp->op);
cp->w = t + 1;
cp->s = t;
- strlcpy(cp->rend, "\n", sizeof cp->rend);
+ strlcpy(cp->rend, "\n\r", sizeof cp->rend);
clients++;
}