From 44477c57be7658741314ea34adfebc961247b1a2 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Fri, 28 Oct 2011 12:55:04 -0600 Subject: [PATCH] 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. --- src/conf/secret_conf.c | 1 + 1 file changed, 1 insertion(+) 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);