diff options
author | 2009-03-06 23:45:00 +0000 | |
---|---|---|
committer | 2009-03-06 23:45:00 +0000 | |
commit | 3d8d6f3d4e8b64b90cbfb56d05c35a8016cbd9d0 (patch) | |
tree | 377c68a23e6d13ac98ad6719397a43d4fe77bdc8 | |
parent | introduce map_dblookup() which allows us to query db maps for plain entries (diff) | |
download | wireguard-openbsd-3d8d6f3d4e8b64b90cbfb56d05c35a8016cbd9d0.tar.xz wireguard-openbsd-3d8d6f3d4e8b64b90cbfb56d05c35a8016cbd9d0.zip |
missing prototype
-rw-r--r-- | usr.sbin/smtpd/smtpd.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h index 6788f4286a4..5390f76aa43 100644 --- a/usr.sbin/smtpd/smtpd.h +++ b/usr.sbin/smtpd/smtpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.h,v 1.82 2009/03/03 23:33:52 gilles Exp $ */ +/* $OpenBSD: smtpd.h,v 1.83 2009/03/06 23:45:00 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -853,6 +853,9 @@ void show_queue(char *, int); u_int16_t queue_hash(char *); +/* map.c */ +char *map_dblookup(struct smtpd *, char *, char *); + /* mda.c */ pid_t mda(struct smtpd *); int mdaproc_cmp(struct mdaproc *, struct mdaproc *); |