Browse Source

fixed run_command()

master
Aaron Marcher 7 years ago
parent
commit
6890a27a3a
No known key found for this signature in database GPG Key ID: 74B048E5C2474F9A
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      slstatus.c

+ 4
- 2
slstatus.c View File

@@ -400,7 +400,7 @@ static char *
run_command(const char *cmd)
{
FILE *fp;
char buf[64] = "n/a";
char buf[1024] = "n/a";

fp = popen(cmd, "r");
if (fp == NULL) {
@@ -408,9 +408,11 @@ run_command(const char *cmd)
return smprintf(UNKNOWN_STR);
}
fgets(buf, sizeof(buf)-1, fp);
buf[strlen(buf)-1] = '\0';
pclose(fp);

buf[strlen(buf)] = '\0';
strtok(buf, "\n");

return smprintf("%s", buf);
}



Loading…
Cancel
Save