mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Correct message to say "shutting down" rather than just "shutting"
Noticed by: Joachim Strömbergson <watchman@ludd.luth.se>
This commit is contained in:
parent
5f4d50b544
commit
847c1df2db
2 changed files with 6 additions and 6 deletions
|
|
@ -136,9 +136,9 @@ main(int argc, char **argv)
|
|||
status = setjmp(BailOut);
|
||||
if (status) {
|
||||
msgConfirm("A signal %d was caught - I'm saving what I can and shutting\n"
|
||||
"If you can reproduce the problem, please turn Debug on in\n"
|
||||
"the Options menu for the extra information it provides in\n"
|
||||
"debugging problems like this.", status);
|
||||
"down. If you can reproduce the problem, please turn Debug on\n"
|
||||
"in the Options menu for the extra information it provides\n"
|
||||
"in debugging problems like this.", status);
|
||||
systemShutdown(status);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -136,9 +136,9 @@ main(int argc, char **argv)
|
|||
status = setjmp(BailOut);
|
||||
if (status) {
|
||||
msgConfirm("A signal %d was caught - I'm saving what I can and shutting\n"
|
||||
"If you can reproduce the problem, please turn Debug on in\n"
|
||||
"the Options menu for the extra information it provides in\n"
|
||||
"debugging problems like this.", status);
|
||||
"down. If you can reproduce the problem, please turn Debug on\n"
|
||||
"in the Options menu for the extra information it provides\n"
|
||||
"in debugging problems like this.", status);
|
||||
systemShutdown(status);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue