From: Eric Blake Date: Fri, 28 Oct 2011 18:55:04 +0000 (-0600) Subject: secret: fix bad patch application X-Git-Tag: v0.9.7-rc1~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44477c57be7658741314ea34adfebc961247b1a2;p=thirdparty%2Flibvirt.git secret: fix bad patch application In hand-applying Josh and Sage's patch, I missed out on a break. * src/conf/secret_conf.c (virSecretDefFree): Fix my botch. --- diff --git a/src/conf/secret_conf.c b/src/conf/secret_conf.c index fa808888d0..a51fc6963a 100644 --- a/src/conf/secret_conf.c +++ b/src/conf/secret_conf.c @@ -55,6 +55,7 @@ virSecretDefFree(virSecretDefPtr def) case VIR_SECRET_USAGE_TYPE_CEPH: VIR_FREE(def->usage.ceph); + break; default: VIR_ERROR(_("unexpected secret usage type %d"), def->usage_type);