apparmor: make internal lib fn skipn_spaces available to the rest of apparmor
[platform/kernel/linux-exynos.git] / security / apparmor / lib.c
index 7cd788a..864b2fa 100644 (file)
@@ -69,7 +69,7 @@ char *aa_split_fqname(char *fqname, char **ns_name)
  * if all whitespace will return NULL
  */
 
-static const char *skipn_spaces(const char *str, size_t n)
+const char *skipn_spaces(const char *str, size_t n)
 {
        for (; n && isspace(*str); --n)
                ++str;