]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
build: nuke more uses of 'sync'
authorEric Blake <eblake@redhat.com>
Mon, 19 May 2014 23:02:42 +0000 (17:02 -0600)
committerEric Blake <eblake@redhat.com>
Mon, 19 May 2014 23:07:47 +0000 (17:07 -0600)
Commit d5c86278 was incomplete; other functions also triggered
compiler warnings about collisions in the use of 'sync'.

* src/qemu/qemu_driver.c (qemuDomainSetTime): Fix another client.
* tools/virsh-domain-monitor.c (cmdDomTime): Likewise.

Signed-off-by: Eric Blake <eblake@redhat.com>
src/qemu/qemu_driver.c
tools/virsh-domain-monitor.c

index cab653b5d6d0b48da096e098ba2758f99cf855f0..c8a002977ecc16d15df97b63ea9e3cf1f1ae4810 100644 (file)
@@ -16598,7 +16598,7 @@ qemuDomainSetTime(virDomainPtr dom,
     virQEMUDriverPtr driver = dom->conn->privateData;
     qemuDomainObjPrivatePtr priv;
     virDomainObjPtr vm;
-    bool sync = flags & VIR_DOMAIN_TIME_SYNC;
+    bool rtcSync = flags & VIR_DOMAIN_TIME_SYNC;
     int ret = -1;
     int rv;
 
@@ -16625,7 +16625,7 @@ qemuDomainSetTime(virDomainPtr dom,
         goto endjob;
 
     qemuDomainObjEnterAgent(vm);
-    rv = qemuAgentSetTime(priv->agent, seconds, nseconds, sync);
+    rv = qemuAgentSetTime(priv->agent, seconds, nseconds, rtcSync);
     qemuDomainObjExitAgent(vm);
 
     if (rv < 0)
index a3b66edac1dbdcff21230f1da71fbdbf086a0edc..8bd58ad41776875256e5057edf1f43016c34bd54 100644 (file)
@@ -1400,7 +1400,7 @@ cmdDomTime(vshControl *ctl, const vshCmd *cmd)
     bool ret = false;
     bool now = vshCommandOptBool(cmd, "now");
     bool pretty = vshCommandOptBool(cmd, "pretty");
-    bool sync = vshCommandOptBool(cmd, "sync");
+    bool rtcSync = vshCommandOptBool(cmd, "sync");
     long long seconds = 0;
     unsigned int nseconds = 0;
     unsigned int flags = 0;
@@ -1426,13 +1426,13 @@ cmdDomTime(vshControl *ctl, const vshCmd *cmd)
         doSet = true;
     }
 
-    if (doSet || now || sync) {
+    if (doSet || now || rtcSync) {
         if (now && ((seconds = time(NULL)) == (time_t) -1)) {
             vshError(ctl, _("Unable to get current time"));
             goto cleanup;
         }
 
-        if (sync)
+        if (rtcSync)
             flags |= VIR_DOMAIN_TIME_SYNC;
 
         if (virDomainSetTime(dom, seconds, nseconds, flags) < 0)