summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon TURNEY <jon.turney@dronecode.org.uk>2010-10-26 21:02:25 +0100
committerJon TURNEY <jon.turney@dronecode.org.uk>2012-03-10 13:25:35 +0000
commit4d83edb381320ce0adbf32be9d782116b6c13b24 (patch)
tree65acf556726f18ded57d86f16082a33a086898a7
parent880208ec3bd0ed0629f7f00df8c20074ad3d9c58 (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
-rw-r--r--hw/xwin/winprocarg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xwin/winprocarg.c b/hw/xwin/winprocarg.c
index 9bec84141..8b0b3b065 100644
--- a/hw/xwin/winprocarg.c
+++ b/hw/xwin/winprocarg.c
@@ -1235,6 +1235,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");
}