audit: Fix decimal constant description
authorMichal Simek <michal.simek@xilinx.com>
Mon, 8 Jul 2013 22:59:39 +0000 (15:59 -0700)
committerMark Brown <broonie@linaro.org>
Sun, 18 Aug 2013 16:00:37 +0000 (17:00 +0100)
Use proper decimal type for comparison with u32.

Compilation warning was introduced by 780a7654 ("audit: Make testing for
a valid loginuid explicit.")

  kernel/auditfilter.c: In function 'audit_data_to_entry':
  kernel/auditfilter.c:426:3: warning: this decimal constant is unsigned only in ISO C90 [enabled by default]
     if ((f->type == AUDIT_LOGINUID) && (f->val == 4294967295)) {

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Eric Paris <eparis@redhat.com>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
(cherry picked from commit b9ce54c9f59894e787e3067d2f758c297fcd6fd0)
Signed-off-by: Mark Brown <broonie@linaro.org>
kernel/auditfilter.c

index 6bd4a90d1991cdf84e5d14fa187af4a3b3f390f9..4d230eafd5e887d5c8961f23c0d9897ad7ad935e 100644 (file)
@@ -423,7 +423,7 @@ static struct audit_entry *audit_data_to_entry(struct audit_rule_data *data,
                f->lsm_rule = NULL;
 
                /* Support legacy tests for a valid loginuid */
-               if ((f->type == AUDIT_LOGINUID) && (f->val == 4294967295)) {
+               if ((f->type == AUDIT_LOGINUID) && (f->val == ~0U)) {
                        f->type = AUDIT_LOGINUID_SET;
                        f->val = 0;
                }