opened the file before the path concatenates, what an idiot
Ali H. Fardan raiz@firemail.cc
Wed, 31 Aug 2016 14:29:27 +0300
1 files changed,
3 insertions(+),
1 deletions(-)
jump to
M
slstatus.c
→
slstatus.c
@@ -564,11 +564,13 @@ char *datastart;
char path[64]; char status[5]; char needle[strlen(wificard)+2]; - FILE *fp = fopen(path, "r"); + FILE *fp; strlcpy(path, "/sys/class/net/", sizeof(path)); strlcat(path, wificard, sizeof(path)); strlcat(path, "/operstate", sizeof(path)); + + fp = fopen(path, "r"); if(fp == NULL) { fprintf(stderr, "Error opening wifi operstate file: %s\n",