all repos — slstatus @ f7a6d6c8f7d621fe7b5a9c37a130f8bf3b9bd892

my build of slstatus (tools.suckless.org/slstatus/)

wifi: Various cleanups
Aaron Marcher me@drkhsh.at
Wed, 02 May 2018 08:49:06 +0200
commit

f7a6d6c8f7d621fe7b5a9c37a130f8bf3b9bd892

parent

709549b4bd9fee0e0054c0dfa75fff9ac18f2862

1 files changed, 6 insertions(+), 9 deletions(-)

jump to
M components/wifi.ccomponents/wifi.c

@@ -25,20 +25,17 @@ FILE *fp;

snprintf(path, sizeof(path), "%s%s%s", "/sys/class/net/", iface, "/operstate"); - fp = fopen(path, "r"); - if (fp == NULL) { + if (!(fp = fopen(path, "r"))) { fprintf(stderr, "fopen '%s': %s\n", path, strerror(errno)); return NULL; } - p = fgets(status, 5, fp); - fclose(fp); - if(!p || strcmp(status, "up\n") != 0) { + if(!(p = fgets(status, 5, fp)) || strcmp(status, "up\n") != 0) { return NULL; } + fclose(fp); - fp = fopen("/proc/net/wireless", "r"); - if (fp == NULL) { + if (!(fp = fopen("/proc/net/wireless", "r"))) { fprintf(stderr, "fopen '/proc/net/wireless': %s\n", strerror(errno)); return NULL;

@@ -92,8 +89,8 @@ close(sockfd);

if (strcmp(id, "") == 0) return NULL; - else - return id; + + return id; } #elif defined(__OpenBSD__) /* unimplemented */