From f3772867372d1cfe3050d10e0b081fa020f0c5f3 Mon Sep 17 00:00:00 2001
From: Ryota Ozaki <ozaki.ryota@gmail.com>
Date: Mon, 2 Mar 2009 03:49:54 +0900
Subject: [PATCH] fix error message

---
 src/storage_conf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/storage_conf.c b/src/storage_conf.c
index e79210a..de07d7a 100644
--- a/src/storage_conf.c
+++ b/src/storage_conf.c
@@ -836,7 +836,7 @@ virStorageVolDefParsePerms(virConnectPtr conn,
     } else {
         if (virXPathLong(conn, "number(/volume/permissions/group)", ctxt, &v) < 0) {
             virStorageReportError(conn, VIR_ERR_XML_ERROR,
-                                  "%s", _("missing owner element"));
+                                  "%s", _("missing group element"));
             return -1;
         }
         perms->gid = (int)v;
-- 
1.6.0.6

