mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-09-04 16:25:10 +00:00
split routines for loading binary policy into its own file
Signed-off-by: John Johansen <john.johansen@canonical.com> [tyhicks: Handle inverted return from find_subdomainfs_mountpoint()] [tyhicks: Link test progs to libapparmor to fix make check build fail] [tyhicks: Migrate from opendir() to open() for opening apparmorfs] [tyhicks: Make some of the split out functions static] Signed-off-by: Tyler Hicks <tyhicks@canonical.com>
This commit is contained in:
committed by
Tyler Hicks
parent
076bc6be7a
commit
4e712f6c8d
@@ -174,7 +174,7 @@ fail:
|
||||
*
|
||||
* Returns: true if an octal digit, else false
|
||||
*/
|
||||
bool isodigit(char c)
|
||||
int isodigit(char c)
|
||||
{
|
||||
return (c >= '0' && c <= '7') ? true : false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user