diff options
author | 2013-12-05 15:05:53 +0000 | |
---|---|---|
committer | 2013-12-05 15:05:53 +0000 | |
commit | 5986af06ff117553ae47f67c099f94b54bd09cc4 (patch) | |
tree | 43fb92ca535c7c4bf7a050a01555afa4ca27454f | |
parent | bogus ';' (diff) | |
download | wireguard-openbsd-5986af06ff117553ae47f67c099f94b54bd09cc4.tar.xz wireguard-openbsd-5986af06ff117553ae47f67c099f94b54bd09cc4.zip |
missing init
-rw-r--r-- | usr.sbin/smtpd/smtp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtp.c b/usr.sbin/smtpd/smtp.c index 2d4d8e6943d..aa3ea72f14d 100644 --- a/usr.sbin/smtpd/smtp.c +++ b/usr.sbin/smtpd/smtp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtp.c,v 1.130 2013/11/06 10:01:29 eric Exp $ */ +/* $OpenBSD: smtp.c,v 1.131 2013/12/05 15:05:53 eric Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org> @@ -115,6 +115,7 @@ smtp_imsg(struct mproc *p, struct imsg *imsg) env->sc_ssl_dict = calloc(1, sizeof *env->sc_ssl_dict); if (env->sc_ssl_dict == NULL) fatal(NULL); + dict_init(env->sc_ssl_dict); TAILQ_INIT(env->sc_listeners); return; |