aboutsummaryrefslogtreecommitdiffstats
path: root/smtpd/parser.c
diff options
context:
space:
mode:
authorGilles Chehade <gilles@dalenys.com>2015-12-12 18:45:23 +0100
committerGilles Chehade <gilles@dalenys.com>2015-12-12 18:45:23 +0100
commit48607afafec39940bd07c1a5a79ba8ecc96316e1 (patch)
tree6dc8e3b726049d2516238c2d1e68952121d80a37 /smtpd/parser.c
parentMerge branch 'master' into portable (diff)
parentsync (diff)
downloadOpenSMTPD-48607afafec39940bd07c1a5a79ba8ecc96316e1.tar.xz
OpenSMTPD-48607afafec39940bd07c1a5a79ba8ecc96316e1.zip
Merge branch 'master' into portable_merge
Diffstat (limited to 'smtpd/parser.c')
-rw-r--r--smtpd/parser.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/smtpd/parser.c b/smtpd/parser.c
index ee4ee1a3..1f4b65e1 100644
--- a/smtpd/parser.c
+++ b/smtpd/parser.c
@@ -1,4 +1,4 @@
-/* $OpenBSD$ */
+/* $OpenBSD: parser.c,v 1.40 2015/01/09 08:28:02 gilles Exp $ */
/*
* Copyright (c) 2013 Eric Faurot <eric@openbsd.org>
@@ -119,7 +119,6 @@ cmd_install(const char *pattern, int (*cmd)(int, struct parameter*))
return (n);
}
-#if 0
static void
cmd_dump(struct node *node, int depth)
{
@@ -133,7 +132,6 @@ cmd_dump(struct node *node, int depth)
TAILQ_FOREACH(n, &node->children, entry)
cmd_dump(n, depth + 1);
}
-#endif
static int
cmd_check(const char *str, struct node *node, struct parameter *res)