summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander2014-07-17 11:19:32 +0000
committerMagnus Hagander2014-07-17 11:19:32 +0000
commit6cd471a6d46b463e5222e5bb2d859311ddc1d86a (patch)
treeb8640c280219842d42c1cb08bc7c98d846ea7f75
parentc0e4520b1667279389bb0dce8d867df2ac25042a (diff)
Revert broken change to pgevent.c
pgevent doesn't include the global PostgreSQL headers, for a reason, and therefor cannot rely on defines in it...
-rw-r--r--src/bin/pgevent/pgevent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pgevent/pgevent.c b/src/bin/pgevent/pgevent.c
index 83949c2cda2..6a667812fba 100644
--- a/src/bin/pgevent/pgevent.c
+++ b/src/bin/pgevent/pgevent.c
@@ -26,7 +26,7 @@ HANDLE g_module = NULL; /* hModule of DLL */
* The maximum length of a registry key is 255 characters.
* http://msdn.microsoft.com/en-us/library/ms724872(v=vs.85).aspx
*/
-char event_source[256] = DEFAULT_EVENT_SOURCE;
+char event_source[256] = "PostgreSQL";
/* Prototypes */
HRESULT DllInstall(BOOL bInstall, LPCWSTR pszCmdLine);