diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-03-03 21:58:59 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2011-03-03 21:58:59 +0000 |
commit | bf46d0fe2e5dc8561185e29a24567e0095ea92f1 (patch) | |
tree | 534577bba2f47341c660a1b22e5a20af0a821d9f /libexec | |
parent | 9aff6b75669f4e04aa05dab0ba8a554c199f270d (diff) |
repair arguments passed to pfctl; PR 6142, ok beck
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/spamd/grey.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/spamd/grey.c b/libexec/spamd/grey.c index e9ca5d2142c..8b4951de07f 100644 --- a/libexec/spamd/grey.c +++ b/libexec/spamd/grey.c @@ -1,4 +1,4 @@ -/* $OpenBSD: grey.c,v 1.50 2010/10/06 09:38:02 stephan Exp $ */ +/* $OpenBSD: grey.c,v 1.51 2011/03/03 21:58:58 deraadt Exp $ */ /* * Copyright (c) 2004-2006 Bob Beck. All rights reserved. @@ -100,7 +100,7 @@ time_t startup; static char *pargv[11]= { "pfctl", "-p", "/dev/pf", "-q", "-t", - "spamd-white", "-T", "replace", "-f" "-", NULL + "spamd-white", "-T", "replace", "-f", "-", NULL }; /* If the parent gets a signal, kill off the children and exit */ |