mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Wrap to 80 columns. No functional change.
This commit is contained in:
parent
530fdf6771
commit
2b6e6d8500
1 changed files with 4 additions and 2 deletions
|
|
@ -647,9 +647,11 @@ sysdecode_reboot_howto(FILE *fp, int howto, int *rem)
|
|||
/*
|
||||
* RB_AUTOBOOT is special in that its value is zero, but it is
|
||||
* also an implied argument if a different operation is not
|
||||
* requested via RB_HALT, RB_POWERCYCLE, RB_POWEROFF, or RB_REROOT.
|
||||
* requested via RB_HALT, RB_POWERCYCLE, RB_POWEROFF, or
|
||||
* RB_REROOT.
|
||||
*/
|
||||
if (howto != 0 && (howto & (RB_HALT | RB_POWEROFF | RB_REROOT | RB_POWERCYCLE)) == 0) {
|
||||
if (howto != 0 && (howto & (RB_HALT | RB_POWEROFF | RB_REROOT |
|
||||
RB_POWERCYCLE)) == 0) {
|
||||
fputs("RB_AUTOBOOT|", fp);
|
||||
printed = true;
|
||||
} else
|
||||
|
|
|
|||
Loading…
Reference in a new issue