diff options
author | marha <marha@users.sourceforge.net> | 2012-10-02 10:44:23 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-10-02 10:44:23 +0200 |
commit | bab6395ded69210cbc550c0fb3765160e4405283 (patch) | |
tree | 14a8d9b7dd8811ae93feeb1d7d0a766d485ca0da /xorg-server/hw/xwin | |
parent | 07be8c02a809f5bfacf5d195123a61f51708b9ca (diff) | |
download | vcxsrv-bab6395ded69210cbc550c0fb3765160e4405283.tar.gz vcxsrv-bab6395ded69210cbc550c0fb3765160e4405283.tar.bz2 vcxsrv-bab6395ded69210cbc550c0fb3765160e4405283.zip |
Make sure that version info is print to log file
Diffstat (limited to 'xorg-server/hw/xwin')
-rw-r--r-- | xorg-server/hw/xwin/winprocarg.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/xorg-server/hw/xwin/winprocarg.c b/xorg-server/hw/xwin/winprocarg.c index c90d5304a..f8c981a97 100644 --- a/xorg-server/hw/xwin/winprocarg.c +++ b/xorg-server/hw/xwin/winprocarg.c @@ -1199,18 +1199,16 @@ winLogCommandLine(int argc, char *argv[]) void winLogVersionInfo(void) { -#ifdef WINDBG static Bool s_fBeenHere = FALSE; if (s_fBeenHere) return; s_fBeenHere = TRUE; - winDebug ("Welcome to the VcXsrv X Server\n"); - winDebug ("Vendor: %s\n", XVENDORNAME); - winDebug ("Release: %d.%d.%d.%d\n\n", XORG_VERSION_MAJOR, - XORG_VERSION_MINOR, XORG_VERSION_PATCH, XORG_VERSION_SNAP); - winDebug ("%s\n\n", BUILDERSTRING); - winDebug ("Contact: %s\n\n", BUILDERADDR); -#endif + ErrorF ("Welcome to the VcXsrv X Server\n"); + ErrorF ("Vendor: %s\n", XVENDORNAME); + ErrorF ("Release: %d.%d.%d.%d\n\n", XORG_VERSION_MAJOR, + XORG_VERSION_MINOR, XORG_VERSION_PATCH, XORG_VERSION_SNAP); + ErrorF ("%s\n\n", BUILDERSTRING); + ErrorF ("Contact: %s\n\n", BUILDERADDR); } |