From 81b7854d52d35ed2353dd47033ae630d18322a2d Mon Sep 17 00:00:00 2001
From: Andrew Morton <akpm@osdl.org>
Date: Fri, 29 Apr 2005 15:59:11 +0100
Subject: [PATCH] audit_log_untrustedstring() warning fix

kernel/audit.c: In function `audit_log_untrustedstring':
kernel/audit.c:736: warning: comparison is always false due to limited range of data type

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
---
 kernel/audit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/audit.c b/kernel/audit.c
index dca7b99615d2..e7bff8000d23 100644
--- a/kernel/audit.c
+++ b/kernel/audit.c
@@ -730,7 +730,7 @@ void audit_log_hex(struct audit_buffer *ab, const unsigned char *buf, size_t len
 
 void audit_log_untrustedstring(struct audit_buffer *ab, const char *string)
 {
-	const char *p = string;
+	const unsigned char *p = string;
 
 	while (*p) {
 		if (*p == '"' || *p == ' ' || *p < 0x20 || *p > 0x7f) {
-- 
GitLab