summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorVadim Zhukov <zhuk@cvs.openbsd.org>2013-06-03 08:48:41 +0000
committerVadim Zhukov <zhuk@cvs.openbsd.org>2013-06-03 08:48:41 +0000
commit96e0ed1d9a0d8d98da8983e21bfe7dd46b0568be (patch)
tree30a5dbdf545dbafc9bf5ae243678bfa02007fd1d /usr.sbin
parent199e0e443286c588caa911fcfdb5fec87177a9c9 (diff)
No need to set backend var here, it's always set before to the same value.
okay gilles@, eric@
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/smtpd/parse.y3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/parse.y b/usr.sbin/smtpd/parse.y
index bf51f6bb9e8..ede623459db 100644
--- a/usr.sbin/smtpd/parse.y
+++ b/usr.sbin/smtpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.117 2013/05/24 17:03:14 eric Exp $ */
+/* $OpenBSD: parse.y,v 1.118 2013/06/03 08:48:40 zhuk Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@poolp.org>
@@ -478,7 +478,6 @@ table : TABLE STRING STRING {
;
if (*p == ':') {
*p = '\0';
- backend = $3;
config = p+1;
}
}