aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2007-01-22 19:38:05 +0000
committerBruce Momjian <bruce@momjian.us>2007-01-22 19:38:05 +0000
commit45e07369383ff1631dea76cae6d222c2f16ad70e (patch)
tree0c411038c12f8b7e8ed16513397b5ef57de4af43 /src
parentd26a5f1feae32d47fd7c884e1cc082cf5625c6fd (diff)
downloadpostgresql-45e07369383ff1631dea76cae6d222c2f16ad70e.tar.gz
postgresql-45e07369383ff1631dea76cae6d222c2f16ad70e.zip
Use errhint() for WIN32 SIGTERM message, where possible.
Diffstat (limited to 'src')
-rw-r--r--src/backend/postmaster/postmaster.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index 474e0311112..4111b87f1f4 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -37,7 +37,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.509 2007/01/22 18:31:51 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.510 2007/01/22 19:38:05 momjian Exp $
*
* NOTES
*
@@ -2435,8 +2435,9 @@ LogChildExit(int lev, const char *procname, int pid, int exitstatus)
/*------
translator: %s is a noun phrase describing a child process, such as
"server process" */
- (errmsg("%s (PID %d) was terminated by exception %X\nSee http://source.winehq.org/source/include/ntstatus.h for a description\nof the hex value.",
- procname, pid, WTERMSIG(exitstatus))));
+ (errmsg("%s (PID %d) was terminated by exception %X",
+ procname, pid, WTERMSIG(exitstatus)),
+ errhint("See http://source.winehq.org/source/include/ntstatus.h for a description of the hex value.")));
#endif
else
ereport(lev,