|
|
c401cc |
From 8cbeefe6f0f1bdb94a4bb8e2f741f25fffe5a49a Mon Sep 17 00:00:00 2001
|
|
|
c401cc |
Message-Id: <8cbeefe6f0f1bdb94a4bb8e2f741f25fffe5a49a@dist-git>
|
|
|
c401cc |
From: Eric Blake <eblake@redhat.com>
|
|
|
c401cc |
Date: Wed, 26 Feb 2014 14:54:29 +0100
|
|
|
c401cc |
Subject: [PATCH] storage: fix typo in previous patch
|
|
|
c401cc |
|
|
|
c401cc |
https://bugzilla.redhat.com/show_bug.cgi?id=1032370
|
|
|
c401cc |
|
|
|
c401cc |
You'd think I'd learn to actually COMMIT my working tree
|
|
|
c401cc |
between testing that a last-minute fix compiles and pushing.
|
|
|
c401cc |
|
|
|
c401cc |
* src/storage/storage_backend_gluster.c
|
|
|
c401cc |
(virStorageBackendGlusterRefreshVol): Typo fix.
|
|
|
c401cc |
|
|
|
c401cc |
Signed-off-by: Eric Blake <eblake@redhat.com>
|
|
|
c401cc |
(cherry picked from commit 053f45f8f699ba8e2924fab9fe8ea3acc567e934)
|
|
|
c401cc |
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
|
|
|
c401cc |
---
|
|
|
c401cc |
src/storage/storage_backend_gluster.c | 2 +-
|
|
|
c401cc |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
c401cc |
|
|
|
c401cc |
diff --git a/src/storage/storage_backend_gluster.c b/src/storage/storage_backend_gluster.c
|
|
|
c401cc |
index 01af4bd..1be9034 100644
|
|
|
c401cc |
--- a/src/storage/storage_backend_gluster.c
|
|
|
c401cc |
+++ b/src/storage/storage_backend_gluster.c
|
|
|
c401cc |
@@ -259,7 +259,7 @@ virStorageBackendGlusterRefreshVol(virStorageBackendGlusterStatePtr state,
|
|
|
c401cc |
if ((vol->target.format = virStorageFileProbeFormatFromBuf(name,
|
|
|
c401cc |
header,
|
|
|
c401cc |
len)) < 0)
|
|
|
c401cc |
- goto clenaup;
|
|
|
c401cc |
+ goto cleanup;
|
|
|
c401cc |
if (!(meta = virStorageFileGetMetadataFromBuf(name, header, len,
|
|
|
c401cc |
vol->target.format)))
|
|
|
c401cc |
goto cleanup;
|
|
|
c401cc |
--
|
|
|
c401cc |
1.9.0
|
|
|
c401cc |
|