summaryrefslogtreecommitdiffstats
path: root/sys-utils/rfkill.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys-utils/rfkill.c')
-rw-r--r--sys-utils/rfkill.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys-utils/rfkill.c b/sys-utils/rfkill.c
index 7d059a0ff..2f744ecf6 100644
--- a/sys-utils/rfkill.c
+++ b/sys-utils/rfkill.c
@@ -170,8 +170,8 @@ static int rfkill_event(void)
break;
}
- if (len != RFKILL_EVENT_SIZE_V1) {
- warnx(_("wrong size of rfkill event: %zu != %d"), len, RFKILL_EVENT_SIZE_V1);
+ if (len < RFKILL_EVENT_SIZE_V1) {
+ warnx(_("wrong size of rfkill event: %zu < %d"), len, RFKILL_EVENT_SIZE_V1);
ret = 1;
continue;
}
@@ -348,8 +348,8 @@ static int rfkill_list(struct control const *const ctrl, const char *param)
break;
}
- if (len != RFKILL_EVENT_SIZE_V1) {
- warnx(_("wrong size of rfkill event: %zu != %d"), len, RFKILL_EVENT_SIZE_V1);
+ if (len < RFKILL_EVENT_SIZE_V1) {
+ warnx(_("wrong size of rfkill event: %zu < %d"), len, RFKILL_EVENT_SIZE_V1);
continue;
}