diff options
-rw-r--r-- | security/integrity/ima/ima_policy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/integrity/ima/ima_policy.c b/security/integrity/ima/ima_policy.c index dee2dc062bcc..1bc9e31ae250 100644 --- a/security/integrity/ima/ima_policy.c +++ b/security/integrity/ima/ima_policy.c | |||
@@ -265,15 +265,15 @@ static int ima_parse_rule(char *rule, struct ima_measure_rule_entry *entry) | |||
265 | 265 | ||
266 | entry->uid = -1; | 266 | entry->uid = -1; |
267 | entry->action = UNKNOWN; | 267 | entry->action = UNKNOWN; |
268 | while ((p = strsep(&rule, " ")) != NULL) { | 268 | while ((p = strsep(&rule, " \t")) != NULL) { |
269 | substring_t args[MAX_OPT_ARGS]; | 269 | substring_t args[MAX_OPT_ARGS]; |
270 | int token; | 270 | int token; |
271 | unsigned long lnum; | 271 | unsigned long lnum; |
272 | 272 | ||
273 | if (result < 0) | 273 | if (result < 0) |
274 | break; | 274 | break; |
275 | if (!*p) | 275 | if ((*p == '\0') || (*p == ' ') || (*p == '\t')) |
276 | break; | 276 | continue; |
277 | token = match_token(p, policy_tokens, args); | 277 | token = match_token(p, policy_tokens, args); |
278 | switch (token) { | 278 | switch (token) { |
279 | case Opt_measure: | 279 | case Opt_measure: |