summaryrefslogtreecommitdiff
path: root/config/udev.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2012-08-27 15:15:19 +1000
committerDave Airlie <airlied@redhat.com>2012-09-04 16:15:52 +1000
commitec740cffeba59216f4293fba829097654cde3b11 (patch)
tree195d1481809a248b5c8a3612b198f8fd7b0ced54 /config/udev.c
parent49ec57d5094be0dd2b67435ac7bb04ead780f36d (diff)
config/udev: add wrapper around check if server is not seat 0
this is a simple clean-up that is useful to stop further propogation of this construct. Reviewed-by: Keith Packard <keithp@keithp.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'config/udev.c')
-rw-r--r--config/udev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/udev.c b/config/udev.c
index 03aca2854..5a8f4816e 100644
--- a/config/udev.c
+++ b/config/udev.c
@@ -339,7 +339,7 @@ config_udev_pre_init(void)
#endif
#ifdef HAVE_UDEV_MONITOR_FILTER_ADD_MATCH_TAG
- if (SeatId && strcmp(SeatId, "seat0"))
+ if (ServerIsNotSeat0())
udev_monitor_filter_add_match_tag(udev_monitor, SeatId);
#endif
if (udev_monitor_enable_receiving(udev_monitor)) {
@@ -368,7 +368,7 @@ config_udev_init(void)
#endif
#ifdef HAVE_UDEV_ENUMERATE_ADD_MATCH_TAG
- if (SeatId && strcmp(SeatId, "seat0"))
+ if (ServerIsNotSeat0())
udev_enumerate_add_match_tag(enumerate, SeatId);
#endif