aboutsummaryrefslogtreecommitdiffstats
path: root/adjbacklight.c
diff options
context:
space:
mode:
Diffstat (limited to 'adjbacklight.c')
-rw-r--r--adjbacklight.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/adjbacklight.c b/adjbacklight.c
index 80dd4a5..d79d11b 100644
--- a/adjbacklight.c
+++ b/adjbacklight.c
@@ -335,11 +335,11 @@ update(int argc, char *argv[], int all, int get, char *set, int set_prefix, doub
} else {
if ((dir = opendir(BACKLIGHT_DIR))) {
while ((ent = readdir(dir))) {
- if (all || strstr(ent->d_name, "acpi_video") == ent->d_name) {
- if (*ent->d_name && *ent->d_name != '.') {
- handle_device(ent->d_name, get, !!set, set_value, set_prefix == '+', set_suffix);
- any = 1;
- }
+ if (*ent->d_name && *ent->d_name != '.') {
+ handle_device(ent->d_name, get, !!set, set_value, set_prefix == '+', set_suffix);
+ any = 1;
+ if (!all)
+ break;
}
}
closedir(dir);