summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2013-01-24 13:00:00 +0100
committerHans de Goede <hdegoede@redhat.com>2013-01-24 13:00:00 +0100
commit1fc816764b6db66c671ffa936ee024a481d88bb4 (patch)
treeefb379f93667f5fdfab5850bcb395484426a7cca
parentf269ec359e0a9f7c11659af9e8121f7e8e714060 (diff)
vdagentd-xorg-conf: Don't warn when there are too few qxl devices (rhbz#895004)
Since we now support more then 1 monitor / qxl device don't log a warning when there are more monitors then qxl-devs. Note the warning does still get written to the generated xorg.conf file, as that is intended for use with xinerama setups, and there we do have a limit of 1 monitor / device. Signed-off-by: Hans de Goede <hdegoede@redhat.com>
-rw-r--r--src/vdagentd-xorg-conf.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/vdagentd-xorg-conf.c b/src/vdagentd-xorg-conf.c
index cfdd4ae..6d5f0f4 100644
--- a/src/vdagentd-xorg-conf.c
+++ b/src/vdagentd-xorg-conf.c
@@ -120,9 +120,6 @@ void vdagentd_write_xorg_conf(VDAgentMonitorsConfig *monitor_conf)
} while ((dev = pci_device_next(it)));
if (i < monitor_conf->num_of_monitors) {
- syslog(LOG_WARNING,
- "Client has %d monitors, but only %d qxl devices found",
- monitor_conf->num_of_monitors, i);
FPRINTF("# Client has %d monitors, but only %d qxl devices found\n",
monitor_conf->num_of_monitors, i);
FPRINTF("# Only generation %d \"Screen\" sections\n\n", i);