1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Small punctuation fixes

This commit is contained in:
Peter Eisentraut
2012-08-28 03:10:04 -04:00
parent bf849af7f3
commit a5727888d7
2 changed files with 5 additions and 4 deletions

View File

@ -438,7 +438,8 @@ main(int argc, char **argv)
else
{
fprintf(stderr,
_("%s: disconnected. Waiting %d seconds to try again\n"),
/* translator: check source for value for %d */
_("%s: disconnected. Waiting %d seconds to try again.\n"),
progname, RECONNECT_SLEEP_TIME);
pg_usleep(RECONNECT_SLEEP_TIME * 1000000);
}

View File

@ -180,7 +180,7 @@ close_walfile(char *basedir, char *walname, bool segment_complete)
}
else
fprintf(stderr,
_("%s: not renaming \"%s\", segment is not complete.\n"),
_("%s: not renaming \"%s\", segment is not complete\n"),
progname, walname);
return true;
@ -622,7 +622,7 @@ ReceiveXlogStream(PGconn *conn, XLogRecPtr startpos, uint32 timeline,
if (copybuf != NULL)
PQfreemem(copybuf);
if (walfile != -1 && close(walfile) != 0)
fprintf(stderr, _("%s: could not close file %s: %s\n"),
fprintf(stderr, _("%s: could not close file \"%s\": %s\n"),
progname, current_walfile_name, strerror(errno));
walfile = -1;
return true;
@ -631,7 +631,7 @@ error:
if (copybuf != NULL)
PQfreemem(copybuf);
if (walfile != -1 && close(walfile) != 0)
fprintf(stderr, _("%s: could not close file %s: %s\n"),
fprintf(stderr, _("%s: could not close file \"%s\": %s\n"),
progname, current_walfile_name, strerror(errno));
walfile = -1;
return false;