mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Correct a bug where pr_data should have been assigned.
This commit is contained in:
parent
3f772eca32
commit
f0bcd5c3fa
1 changed files with 4 additions and 4 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/*
|
||||
/*-
|
||||
* Copryight 1997 Sean Eric Fagan
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
@ -214,8 +214,8 @@ waitevent(struct trussinfo *info)
|
|||
}
|
||||
}
|
||||
if (WIFSIGNALED(waitval)) {
|
||||
info->pr_why = S_EXIT;
|
||||
info->pr_why = 0;
|
||||
return;
|
||||
info->pr_why = S_EXIT;
|
||||
info->pr_data = 0;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue