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...
This commit is contained in:
Magnus Hagander 2014-07-17 13:19:32 +02:00
parent c0e4520b16
commit 6cd471a6d4
1 changed files with 1 additions and 1 deletions

View File

@ -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);