1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-31 22:04:40 +03:00

Small message fixes

This commit is contained in:
Peter Eisentraut
2014-08-09 00:07:00 -04:00
parent 3dad73e71f
commit f25e0bf5e0
10 changed files with 13 additions and 13 deletions

View File

@ -42,7 +42,7 @@ get_user_name(char **errstr)
pw = getpwuid(user_id);
if (!pw)
{
*errstr = psprintf(_("failed to look up effective user id %ld: %s"),
*errstr = psprintf(_("could not look up effective user ID %ld: %s"),
(long) user_id,
errno ? strerror(errno) : _("user does not exist"));
return NULL;