diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2010-10-26 21:02:25 +0100 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2011-10-05 15:12:19 +0100 |
commit | 961d20493a373347b13f4d0540907c121eeaf4c3 (patch) | |
tree | 01944c16e57fbd41de97ec33629b3656cbe2e6b6 /hw/xwin | |
parent | 9930751d223a54f5eb198c3e0ed850024d29c4e7 (diff) |
Avoid logging VENDOR_CONTACT
The presence of the list email address in the log causes the emails
containing a log to be bounced from the list email
Also, avoid logging an extra blank line if BUILDERSTRING is empty
Diffstat (limited to 'hw/xwin')
-rw-r--r-- | hw/xwin/winprocarg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xwin/winprocarg.c b/hw/xwin/winprocarg.c index 0c24b083c..cbe531fde 100644 --- a/hw/xwin/winprocarg.c +++ b/hw/xwin/winprocarg.c @@ -1227,6 +1227,6 @@ winLogVersionInfo (void) ErrorF ("Welcome to the XWin X Server\n"); ErrorF ("Vendor: %s\n", XVENDORNAME); ErrorF ("Release: %d.%d.%d.%d (%d)\n", XORG_VERSION_MAJOR, XORG_VERSION_MINOR, XORG_VERSION_PATCH, XORG_VERSION_SNAP, XORG_VERSION_CURRENT); - ErrorF ("%s\n\n", BUILDERSTRING); - ErrorF ("Contact: %s\n", BUILDERADDR); + if (strlen(BUILDERSTRING)) ErrorF ("%s\n", BUILDERSTRING); + ErrorF("\n"); } |