artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c5259e9
)
when configuring the daemon, assign values to the structure being conf-ed,
author
gilles
<gilles@openbsd.org>
Tue, 30 Aug 2016 21:33:58 +0000
(21:33 +0000)
committer
gilles
<gilles@openbsd.org>
Tue, 30 Aug 2016 21:33:58 +0000
(21:33 +0000)
not the global structure. this worked by accident.
ok eric@
usr.sbin/smtpd/parse.y
patch
|
blob
|
history
diff --git
a/usr.sbin/smtpd/parse.y
b/usr.sbin/smtpd/parse.y
index
6d14f9a
..
3cce0c7
100644
(file)
--- a/
usr.sbin/smtpd/parse.y
+++ b/
usr.sbin/smtpd/parse.y
@@
-1,4
+1,4
@@
-/* $OpenBSD: parse.y,v 1.18
6 2016/07/01 17:53:23 eric Exp $
*/
+/* $OpenBSD: parse.y,v 1.18
7 2016/08/30 21:33:58 gilles Exp $
*/
/*
* Copyright (c) 2008 Gilles Chehade <gilles@poolp.org>
@@
-958,7
+958,7
@@
main : BOUNCEWARN {
}
} ca
| CIPHERS STRING {
-
env
->sc_tls_ciphers = $2;
+
conf
->sc_tls_ciphers = $2;
}
;