diff options
author | 2014-04-19 17:35:48 +0000 | |
---|---|---|
committer | 2014-04-19 17:35:48 +0000 | |
commit | ce336c81fc7369dab621b43bae87cb492374339d (patch) | |
tree | 73adcc153aaf2d364a416602d330a41812ff11fe | |
parent | (void) cast snprintf that cannot truncate (diff) | |
download | wireguard-openbsd-ce336c81fc7369dab621b43bae87cb492374339d.tar.xz wireguard-openbsd-ce336c81fc7369dab621b43bae87cb492374339d.zip |
remove dead code ... in code that's not plugged in yet ;-)
-rw-r--r-- | usr.sbin/smtpd/filter_api.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/usr.sbin/smtpd/filter_api.c b/usr.sbin/smtpd/filter_api.c index 95a72e34d41..ba19a182a75 100644 --- a/usr.sbin/smtpd/filter_api.c +++ b/usr.sbin/smtpd/filter_api.c @@ -1,4 +1,4 @@ -/* $OpenBSD: filter_api.c,v 1.13 2014/04/09 18:55:19 eric Exp $ */ +/* $OpenBSD: filter_api.c,v 1.14 2014/04/19 17:35:48 gilles Exp $ */ /* * Copyright (c) 2013 Eric Faurot <eric@openbsd.org> @@ -853,13 +853,3 @@ proc_name(enum smtp_proc_type proc) return filter_name; return "filter"; } - -const char * -imsg_to_str(int imsg) -{ - static char buf[32]; - - snprintf(buf, sizeof(buf), "%d", imsg); - - return (buf); -} |