diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-02-05 15:13:14 +0900 |
---|---|---|
committer | James Morris <james.l.morris@oracle.com> | 2014-02-06 19:11:04 +1100 |
commit | 29707b206c5171ac6583a4d1e9ec3af937e8c2e4 (patch) | |
tree | 89eaafa4bfc49b2418db3bdfb367e65f643d2e79 /security/apparmor | |
parent | 923b49ff69fcbffe6f8b2739de218c45544392a7 (diff) | |
download | linux-29707b206c5171ac6583a4d1e9ec3af937e8c2e4.tar.gz linux-29707b206c5171ac6583a4d1e9ec3af937e8c2e4.tar.bz2 linux-29707b206c5171ac6583a4d1e9ec3af937e8c2e4.zip |
security: replace strict_strto*() with kstrto*()
The usage of strict_strto*() is not preferred, because
strict_strto*() is obsolete. Thus, kstrto*() should be
used.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: James Morris <james.l.morris@oracle.com>
Diffstat (limited to 'security/apparmor')
-rw-r--r-- | security/apparmor/lsm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/apparmor/lsm.c b/security/apparmor/lsm.c index 4257b7e2796b..998100093332 100644 --- a/security/apparmor/lsm.c +++ b/security/apparmor/lsm.c @@ -751,7 +751,7 @@ module_param_named(enabled, apparmor_enabled, bool, S_IRUGO); static int __init apparmor_enabled_setup(char *str) { unsigned long enabled; - int error = strict_strtoul(str, 0, &enabled); + int error = kstrtoul(str, 0, &enabled); if (!error) apparmor_enabled = enabled ? 1 : 0; return 1; |