artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c652161
)
Fix an if (); typo. ok beck@
author
jsg
<jsg@openbsd.org>
Tue, 26 Aug 2008 22:49:09 +0000
(22:49 +0000)
committer
jsg
<jsg@openbsd.org>
Tue, 26 Aug 2008 22:49:09 +0000
(22:49 +0000)
libexec/spamd/grey.c
patch
|
blob
|
history
diff --git
a/libexec/spamd/grey.c
b/libexec/spamd/grey.c
index
4e56546
..
65a532f
100644
(file)
--- a/
libexec/spamd/grey.c
+++ b/
libexec/spamd/grey.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: grey.c,v 1.4
3 2008/07/11 14:53:32 reyk Exp $
*/
+/* $OpenBSD: grey.c,v 1.4
4 2008/08/26 22:49:09 jsg Exp $
*/
/*
* Copyright (c) 2004-2006 Bob Beck. All rights reserved.
@@
-293,7
+293,7
@@
dequotetolower(const char *addr)
static char buf[MAX_MAIL];
char *cp;
- if (*addr == '<')
;
+ if (*addr == '<')
addr++;
(void) strlcpy(buf, addr, sizeof(buf));
cp = strrchr(buf, '>');