mirror of
https://github.com/fairyglade/ly
synced 2024-11-16 00:12:58 +00:00
fix kernel_log() and add error-checking (#24)
execl requires a full path to the executable, and the arguments begin with argv[0], not argv[1].
This commit is contained in:
parent
841a951859
commit
2234757282
15
src/utils.c
15
src/utils.c
@ -20,22 +20,29 @@ void kernel_log(int mode)
|
||||
pid_t pid;
|
||||
int status;
|
||||
pid = fork();
|
||||
if(pid < 0) {
|
||||
perror("fork");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if(pid == 0)
|
||||
{
|
||||
if(mode)
|
||||
{
|
||||
execl("dmesg", "-E", NULL);
|
||||
execl("/bin/dmesg", "/bin/dmesg", "-E", NULL);
|
||||
}
|
||||
else
|
||||
{
|
||||
execl("dmesg", "-D", NULL);
|
||||
execl("/bin/dmesg", "/bin/dmesg", "-D", NULL);
|
||||
}
|
||||
|
||||
exit(0);
|
||||
/* execl should not return */
|
||||
perror("execl");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
waitpid(pid, &status, 0);
|
||||
if(!WIFEXITED(status) || WEXITSTATUS(status))
|
||||
exit(1);
|
||||
}
|
||||
|
||||
char* trim(char* s)
|
||||
|
Loading…
Reference in New Issue
Block a user