diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2015-11-30 14:13:04 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2015-11-30 14:13:04 +0000 |
commit | 6de76162d8096c22183a10330d6b78d22b862609 (patch) | |
tree | 785bc144744057702889cd50cd4c207cd7de1f00 /usr.sbin/smtpd/parse.y | |
parent | e37d081909191a42d53d61e1f7adb6cbdffd1551 (diff) |
when looking up tables, start in /usr/local/libexec before /usr/libexec, so
ports/packages can be installed in the proper place
ok jung@
Diffstat (limited to 'usr.sbin/smtpd/parse.y')
-rw-r--r-- | usr.sbin/smtpd/parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/parse.y b/usr.sbin/smtpd/parse.y index 77511d00726..ee3a73740a1 100644 --- a/usr.sbin/smtpd/parse.y +++ b/usr.sbin/smtpd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.157 2015/11/30 12:26:55 sunil Exp $ */ +/* $OpenBSD: parse.y,v 1.158 2015/11/30 14:13:03 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org> @@ -2322,7 +2322,7 @@ create_filter_proc(char *name, char *prog) return (NULL); } - if (asprintf(&path, "%s/filter-%s", PATH_LIBEXEC, prog) == -1) { + if (asprintf(&path, "%s/filter-%s", PATH_LIBEXEC_DEPRECATED, prog) == -1) { yyerror("filter \"%s\" asprintf failed", name); return (0); } |