1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Message style improvements

This commit is contained in:
Peter Eisentraut
2011-08-14 21:03:08 +03:00
parent 280daac707
commit 00fc5d2263
2 changed files with 9 additions and 8 deletions

View File

@ -83,7 +83,7 @@ Initialize(void)
if (stat(archiveLocation, &stat_buf) != 0 ||
!S_ISDIR(stat_buf.st_mode))
{
fprintf(stderr, "%s: archiveLocation \"%s\" does not exist\n",
fprintf(stderr, "%s: archive location \"%s\" does not exist\n",
progname, archiveLocation);
exit(2);
}
@ -135,7 +135,7 @@ CleanupPriorWALFiles(void)
closedir(xldir);
}
else
fprintf(stderr, "%s: could not open archiveLocation \"%s\": %s\n",
fprintf(stderr, "%s: could not open archive location \"%s\": %s\n",
progname, archiveLocation, strerror(errno));
}