1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-09 06:21:09 +03:00

Misc message style and doc fixes.

Euler Taveira
This commit is contained in:
Heikki Linnakangas
2014-05-15 14:49:11 +03:00
parent a82a17475d
commit ff810b4928
5 changed files with 25 additions and 26 deletions

View File

@@ -187,14 +187,14 @@ tablespace_list_append(const char *arg)
*/
if (!is_absolute_path(cell->old_dir))
{
fprintf(stderr, _("%s: old directory not absolute in tablespace mapping: %s\n"),
fprintf(stderr, _("%s: old directory is not an absolute path in tablespace mapping: %s\n"),
progname, cell->old_dir);
exit(1);
}
if (!is_absolute_path(cell->new_dir))
{
fprintf(stderr, _("%s: new directory not absolute in tablespace mapping: %s\n"),
fprintf(stderr, _("%s: new directory is not an absolute path in tablespace mapping: %s\n"),
progname, cell->new_dir);
exit(1);
}
@@ -676,7 +676,7 @@ parse_max_rate(char *src)
if (*after_num != '\0')
{
fprintf(stderr,
_("%s: invalid --max-rate units: \"%s\"\n"),
_("%s: invalid --max-rate unit: \"%s\"\n"),
progname, suffix);
exit(1);
}