Diff between 12b4397df7ab63302991814f1a3c35756dd5a360 and 4ee2b355f1f1de3b43b528faff632b0da4c70658

Changed Files

File Additions Deletions Status
client/main.c +2 -2 modified

Full Patch

diff --git a/client/main.c b/client/main.c
index 165886f..82e366c 100644
--- a/client/main.c
+++ b/client/main.c
@@ -1878,7 +1878,7 @@ static char *generic_generator(const char *text, int state,
 
 		dbus_message_iter_get_basic(&iter, &str);
 
-		if (!strncmp(str, text, len))
+		if (!strncasecmp(str, text, len))
 			return strdup(str);
         }
 
@@ -1910,7 +1910,7 @@ static char *ctrl_generator(const char *text, int state)
 
 		dbus_message_iter_get_basic(&iter, &str);
 
-		if (!strncmp(str, text, len))
+		if (!strncasecmp(str, text, len))
 			return strdup(str);
 	}