From: Daniel P. Berrange Date: Mon, 15 Dec 2014 10:08:06 +0000 (+0000) Subject: fix typo in sanlock driver s/VIR_CONF_UONG/VIR_CONF_ULONG/ X-Git-Tag: v1.2.12-rc1~199 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac1ce2155083d11cd5ce1f4f6bd2e7bbe4ae918d;p=thirdparty%2Flibvirt.git fix typo in sanlock driver s/VIR_CONF_UONG/VIR_CONF_ULONG/ fix typo introduced in previous commit --- diff --git a/src/locking/lock_driver_sanlock.c b/src/locking/lock_driver_sanlock.c index b24e910e07..60f305c43b 100644 --- a/src/locking/lock_driver_sanlock.c +++ b/src/locking/lock_driver_sanlock.c @@ -141,7 +141,7 @@ static int virLockManagerSanlockLoadConfig(const char *configFile) } p = virConfGetValue(conf, "host_id"); - CHECK_TYPE("host_id", VIR_CONF_UONG); + CHECK_TYPE("host_id", VIR_CONF_ULONG); if (p) driver->hostID = p->l; p = virConfGetValue(conf, "require_lease_for_disks");