]> xenbits.xensource.com Git - people/liuw/libxenctrl-split/libvirt.git/commitdiff
Fix 'avialable' typo
authorMatthias Bolte <matthias.bolte@googlemail.com>
Tue, 6 Apr 2010 19:44:11 +0000 (21:44 +0200)
committerMatthias Bolte <matthias.bolte@googlemail.com>
Tue, 6 Apr 2010 20:57:39 +0000 (22:57 +0200)
Reported by Paul Jenner

src/util/util.c

index 28a3c7ed09313bb3893de6580d2a66d51d21ec25..405c5f3d6e2840e32496cf7a8e6e36ac298efb0e 100644 (file)
@@ -2682,7 +2682,7 @@ char *
 virGetUserDirectory(uid_t uid ATTRIBUTE_UNUSED)
 {
     virUtilError(VIR_ERR_INTERNAL_ERROR,
-                 "%s", _("virGetUserDirectory is not avialable"));
+                 "%s", _("virGetUserDirectory is not available"));
 
     return NULL;
 }
@@ -2691,7 +2691,7 @@ char *
 virGetUserName(uid_t uid ATTRIBUTE_UNUSED)
 {
     virUtilError(VIR_ERR_INTERNAL_ERROR,
-                 "%s", _("virGetUserName is not avialable"));
+                 "%s", _("virGetUserName is not available"));
 
     return NULL;
 }
@@ -2700,7 +2700,7 @@ int virGetUserID(const char *name ATTRIBUTE_UNUSED,
                  uid_t *uid ATTRIBUTE_UNUSED)
 {
     virUtilError(VIR_ERR_INTERNAL_ERROR,
-                 "%s", _("virGetUserID is not avialable"));
+                 "%s", _("virGetUserID is not available"));
 
     return 0;
 }
@@ -2710,7 +2710,7 @@ int virGetGroupID(const char *name ATTRIBUTE_UNUSED,
                   gid_t *gid ATTRIBUTE_UNUSED)
 {
     virUtilError(VIR_ERR_INTERNAL_ERROR,
-                 "%s", _("virGetGroupID is not avialable"));
+                 "%s", _("virGetGroupID is not available"));
 
     return 0;
 }