提交 ab8d3233 编写于 作者: P Peter Krempa

util: Fix warning message in previous patch

I didn't notice the extra "does" in the previous patch. Remove it.
上级 96460a19
......@@ -2536,7 +2536,7 @@ virGetUserIDByName(const char *name, uid_t *uid)
/* log the possible error from getpwnam_r. Unfortunately error
* reporting from this function is bad and we can't really
* rely on it, so we just report that the user wasn't found */
VIR_WARN("User record for user '%s' does was not found: %s",
VIR_WARN("User record for user '%s' was not found: %s",
name, virStrerror(rc, buf, sizeof(buf)));
}
......@@ -2620,7 +2620,7 @@ virGetGroupIDByName(const char *name, gid_t *gid)
/* log the possible error from getgrnam_r. Unfortunately error
* reporting from this function is bad and we can't really
* rely on it, so we just report that the user wasn't found */
VIR_WARN("Group record for user '%s' does was not found: %s",
VIR_WARN("Group record for user '%s' was not found: %s",
name, virStrerror(rc, buf, sizeof(buf)));
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册