|
8 | 8 | *
|
9 | 9 | *
|
10 | 10 | * IDENTIFICATION
|
11 |
| - * $PostgreSQL: pgsql/src/backend/utils/init/miscinit.c,v 1.141 2005/06/07 16:54:18 momjian Exp $ |
| 11 | + * $PostgreSQL: pgsql/src/backend/utils/init/miscinit.c,v 1.142 2005/06/20 02:17:30 tgl Exp $ |
12 | 12 | *
|
13 | 13 | *-------------------------------------------------------------------------
|
14 | 14 | */
|
@@ -549,7 +549,8 @@ CreateLockFile(const char *filename, bool amPostmaster,
|
549 | 549 | other_pid= (pid_t) (encoded_pid<0 ?-encoded_pid :encoded_pid);
|
550 | 550 |
|
551 | 551 | if (other_pid <=0)
|
552 |
| -elog(FATAL,"bogus data in lock file \"%s\"",filename); |
| 552 | +elog(FATAL,"bogus data in lock file \"%s\": \"%s\"", |
| 553 | +filename,buffer); |
553 | 554 |
|
554 | 555 | /*
|
555 | 556 | * Check to see if the other process still exists
|
|