diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2018-05-31 21:06:13 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2018-05-31 21:06:13 +0000 |
commit | 9faafef4900db3f8424ad7e25bd826146631b5d1 (patch) | |
tree | 15940d3fddaa91896ffdaef43ea19b7e37c21f9a /usr.sbin/smtpd/smtpctl.c | |
parent | e56f180c5018c2a7bd4b4f9bdf43d8eaecedf450 (diff) |
remove 'where' parameter from all x*() functions in utils.c, it doesn't
really help us with anything, propagate the change in codebase
ok millert@
Diffstat (limited to 'usr.sbin/smtpd/smtpctl.c')
-rw-r--r-- | usr.sbin/smtpd/smtpctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/smtpctl.c b/usr.sbin/smtpd/smtpctl.c index 541331194fd..a78c26fa263 100644 --- a/usr.sbin/smtpd/smtpctl.c +++ b/usr.sbin/smtpd/smtpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpctl.c,v 1.161 2018/05/24 11:38:24 gilles Exp $ */ +/* $OpenBSD: smtpctl.c,v 1.162 2018/05/31 21:06:12 gilles Exp $ */ /* * Copyright (c) 2013 Eric Faurot <eric@openbsd.org> @@ -126,7 +126,7 @@ srv_connect(void) return (0); } - ibuf = xcalloc(1, sizeof(struct imsgbuf), "smtpctl:srv_connect"); + ibuf = xcalloc(1, sizeof(struct imsgbuf)); imsg_init(ibuf, ctl_sock); return (1); |