From 9faafef4900db3f8424ad7e25bd826146631b5d1 Mon Sep 17 00:00:00 2001 From: Gilles Chehade Date: Thu, 31 May 2018 21:06:13 +0000 Subject: 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@ --- usr.sbin/smtpd/smtpctl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/smtpd/smtpctl.c') 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 @@ -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); -- cgit v1.2.3