summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorGilles Chehade <gilles@cvs.openbsd.org>2008-12-11 22:18:16 +0000
committerGilles Chehade <gilles@cvs.openbsd.org>2008-12-11 22:18:16 +0000
commitff2895c0c0d88659827a3facb5040150c16c6ae8 (patch)
tree98f29d0de4dc799dd8c9d94a62df98e07b3dd7b9 /usr.sbin
parent680a3df73420a5f97bbad9d3cb7b50b305e52d2a (diff)
- missing prototype
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/smtpd/smtpd.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h
index e24d96448ed..4de50120710 100644
--- a/usr.sbin/smtpd/smtpd.h
+++ b/usr.sbin/smtpd/smtpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: smtpd.h,v 1.23 2008/12/07 15:38:35 jacekm Exp $ */
+/* $OpenBSD: smtpd.h,v 1.24 2008/12/11 22:18:15 gilles Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
@@ -791,3 +791,6 @@ int ssl_ctx_use_certificate_chain(void *, char *, off_t);
/* smtpd.c */
struct map *map_find(struct smtpd *, objid_t);
struct map *map_findbyname(struct smtpd *, const char *);
+
+/* util.c */
+int bsnprintf(char *, size_t, const char *, ...);