From 57d91fca64123abb133d41cf30a94fd60750ebcd Mon Sep 17 00:00:00 2001 From: Jiri Denemark Date: Fri, 14 Oct 2011 16:25:50 +0200 Subject: [PATCH] util: Fix typo in virGetHostname description --- src/util/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/util.c b/src/util/util.c index fd4d7faed9..dac616bdb9 100644 --- a/src/util/util.c +++ b/src/util/util.c @@ -1858,7 +1858,7 @@ char *virIndexToDiskName(int idx, const char *prefix) * try to resolve this to a fully-qualified name. Therefore we pass it * to getaddrinfo(). There are two possible responses: * a) getaddrinfo() resolves to a FQDN - return the FQDN - * b) getaddrinfo() files or resolves to localhost - in this case, the + * b) getaddrinfo() fails or resolves to localhost - in this case, the * data we got from gethostname() is actually more useful than what * we got from getaddrinfo(). Return the value from gethostname() * and hope for the best.