diff options
author | marha <marha@users.sourceforge.net> | 2014-01-20 11:06:16 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2014-01-20 11:07:16 +0100 |
commit | 5c11706972af935f3f76737491bc3da9c95554dd (patch) | |
tree | 3b74a9ae9f8c8d1a1377debdfe99009c23fe81f9 /xorg-server/hw | |
parent | 84964de9dd2f385a51f91aa54e464c37a116e8ef (diff) | |
download | vcxsrv-5c11706972af935f3f76737491bc3da9c95554dd.tar.gz vcxsrv-5c11706972af935f3f76737491bc3da9c95554dd.tar.bz2 vcxsrv-5c11706972af935f3f76737491bc3da9c95554dd.zip |
Solved problem of silent-dup-error not always being checked correctly
Diffstat (limited to 'xorg-server/hw')
-rw-r--r-- | xorg-server/hw/xwin/winerror.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xorg-server/hw/xwin/winerror.c b/xorg-server/hw/xwin/winerror.c index 859a66834..e8e63be03 100644 --- a/xorg-server/hw/xwin/winerror.c +++ b/xorg-server/hw/xwin/winerror.c @@ -61,7 +61,9 @@ OsVendorVErrorF(const char *pszFormat, va_list va_args) || (strcmp(pszFormat, "Server is already active for display %s\n%s %s\n%s\n") == 0) || (strcmp(pszFormat, - "MakeAllCOTSServerListeners: server already running\n") == 0)) + "MakeAllCOTSServerListeners: server already running\n") == 0) + || (strcmp(pszFormat, + "MakeAllCOTSServerListeners: failed to create listener for %s\n") == 0)) { g_fSilentFatalError = TRUE; } |