Skip to content

Commit

Permalink
Change caps sorting in debug messages. The prefered order seems to be…
Browse files Browse the repository at this point in the history
… PIE.

Signed-off-by: DL6ER <[email protected]>
  • Loading branch information
DL6ER committed Mar 17, 2019
1 parent 8d615d6 commit 73cbb91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions capabilities.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ bool check_capabilities()
logg("DEBUG: Capability %-24s (%02u) = %s%s%s",
capabilityNames[capid],
capid,
((data->effective & (1 << capid)) ? "E":"-"),
((data->permitted & (1 << capid)) ? "P":"-"),
((data->inheritable & (1 << capid)) ? "I":"-"));
((data->inheritable & (1 << capid)) ? "I":"-"),
((data->effective & (1 << capid)) ? "E":"-"));
}
logg("*********************************************************************");
}
Expand Down

0 comments on commit 73cbb91

Please sign in to comment.