CLEANUP: cli: Remove a leftover debug message

This printf() was added in f886e3478d ("MINOR: cli: Add a command to
send listening sockets.").

Signed-off-by: Aurlien Nephtali <aurelien.nephtali@corp.ovh.com>
This commit is contained in:
Aurlien Nephtali 2018-03-10 20:59:56 +01:00 committed by Willy Tarreau
parent 76de95a4c0
commit bca08762d2

View File

@ -1416,7 +1416,6 @@ static int _getsocks(char **args, struct appctx *appctx, void *private)
iov.iov_len = curoff; iov.iov_len = curoff;
if (sendmsg(fd, &msghdr, 0) != curoff) { if (sendmsg(fd, &msghdr, 0) != curoff) {
ha_warning("Failed to transfer sockets\n"); ha_warning("Failed to transfer sockets\n");
printf("errno %d\n", errno);
goto out; goto out;
} }
/* Wait for an ack */ /* Wait for an ack */