From: gilles Date: Sat, 19 Apr 2014 17:35:48 +0000 (+0000) Subject: remove dead code ... in code that's not plugged in yet ;-) X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=ce336c81fc7369dab621b43bae87cb492374339d;p=openbsd remove dead code ... in code that's not plugged in yet ;-) --- 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 @@ -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); -}