Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1c25594

Browse files
committed
Improve messages
1 parent c2f7536 commit 1c25594

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/bin/pg_dump/pg_backup_archiver.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*
1616
*
1717
* IDENTIFICATION
18-
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.115 2005/09/11 00:36:14 tgl Exp $
18+
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.116 2005/09/28 13:11:26 petere Exp $
1919
*
2020
*-------------------------------------------------------------------------
2121
*/
@@ -304,7 +304,7 @@ RestoreArchive(Archive *AHX, RestoreOptions *ropt)
304304

305305
if (strcmp(te->desc, "BLOBS") == 0)
306306
{
307-
ahlog(AH, 1, "restoring blob data\n");
307+
ahlog(AH, 1, "restoring large object data\n");
308308

309309
_selectOutputSchema(AH, "pg_catalog");
310310

src/bin/pg_dump/pg_restore.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
*
3535
*
3636
* IDENTIFICATION
37-
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.71 2005/06/09 17:56:51 momjian Exp $
37+
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_restore.c,v 1.72 2005/09/28 13:11:26 petere Exp $
3838
*
3939
*-------------------------------------------------------------------------
4040
*/
@@ -319,7 +319,7 @@ main(int argc, char **argv)
319319
break;
320320

321321
default:
322-
write_msg(NULL, "unrecognized archive format '%s'; please specify 't' or 'c'\n",
322+
write_msg(NULL, "unrecognized archive format \"%s\"; please specify \"c\" or \"t\"\n",
323323
opts->formatName);
324324
exit(1);
325325
}

0 commit comments

Comments
 (0)