From: Jiri Denemark Date: Wed, 30 May 2012 13:36:12 +0000 (+0200) Subject: command: Fix debug message during handshake X-Git-Tag: v0.9.13-rc1~152 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=461ed4210fc44ff81b8d5da1b83ead1791456028;p=thirdparty%2Flibvirt.git command: Fix debug message during handshake Probably a result of copy&paste... --- diff --git a/src/util/command.c b/src/util/command.c index ba43078450..dcac112345 100644 --- a/src/util/command.c +++ b/src/util/command.c @@ -2534,7 +2534,7 @@ int virCommandHandshakeNotify(virCommandPtr cmd) return -1; } - VIR_DEBUG("Notify handshake on %d", cmd->handshakeWait[0]); + VIR_DEBUG("Notify handshake on %d", cmd->handshakeNotify[1]); if (safewrite(cmd->handshakeNotify[1], &c, sizeof(c)) != sizeof(c)) { virReportSystemError(errno, "%s", _("Unable to notify child process")); VIR_FORCE_CLOSE(cmd->handshakeNotify[1]);