|
9 | 9 | *
|
10 | 10 | *
|
11 | 11 | * IDENTIFICATION
|
12 |
| - * $PostgreSQL: pgsql/src/port/exec.c,v 1.52 2007/01/2806:32:02 tgl Exp $ |
| 12 | + * $PostgreSQL: pgsql/src/port/exec.c,v 1.53 2007/01/2807:29:32 tgl Exp $ |
13 | 13 | *
|
14 | 14 | *-------------------------------------------------------------------------
|
15 | 15 | */
|
@@ -587,10 +587,9 @@ pclose_check(FILE *stream)
|
587 | 587 | log_error(_("child process was terminated by exception 0x%X"),
|
588 | 588 | WTERMSIG(exitstatus));
|
589 | 589 | #elif defined(HAVE_DECL_SYS_SIGLIST)&&HAVE_DECL_SYS_SIGLIST
|
590 |
| -log_error(_("child process was terminated by signal %s (%d)"), |
| 590 | +log_error(_("child process was terminated by signal %s"), |
591 | 591 | WTERMSIG(exitstatus)<NSIG ?
|
592 |
| -sys_siglist[WTERMSIG(exitstatus)] :"(unknown)", |
593 |
| -WTERMSIG(exitstatus)); |
| 592 | +sys_siglist[WTERMSIG(exitstatus)] :"(unknown)"); |
594 | 593 | #else
|
595 | 594 | log_error(_("child process was terminated by signal %d"),
|
596 | 595 | WTERMSIG(exitstatus));
|
|