Merge pull request #29 from keikari/patch-2

Fix, delimLen caused weird behaviour
This commit is contained in:
torrinfail 2020-08-27 06:51:30 +00:00 committed by GitHub
commit 3d308cafb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -178,7 +178,8 @@ int main(int argc, char** argv)
else if (!strcmp("-p",argv[i]))
writestatus = pstdout;
}
delim[MIN(delimLen, strlen(delim))] = '\0';
delimLen = MIN(delimLen, strlen(delim));
delim[delimLen++] = '\0';
signal(SIGTERM, termhandler);
signal(SIGINT, termhandler);
statusloop();