From 740efd3edd1fc37e3fa4b58618294911c5e328a9 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Thu, 8 Nov 2007 18:41:22 +0000 Subject: [PATCH] remove the at symbol from the char blacklist --- libpackagekit/pk-common.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libpackagekit/pk-common.c b/libpackagekit/pk-common.c index 8db860bfc..41848920c 100644 --- a/libpackagekit/pk-common.c +++ b/libpackagekit/pk-common.c @@ -92,7 +92,6 @@ pk_strvalidate_char (gchar item) case ']': case '{': case '}': - case '@': case '#': case '\\': case '<': @@ -177,7 +176,7 @@ pk_strvalidate (const gchar *text) return FALSE; } if (pk_strvalidate_char (text[i]) == FALSE) { - pk_debug ("invalid char in text!"); + pk_debug ("invalid char '%c' in text!", text[i]); return FALSE; } }