summaryrefslogtreecommitdiff
path: root/src/proctable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/proctable.cpp')
-rw-r--r--src/proctable.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proctable.cpp b/src/proctable.cpp
index 158b8f7..afa14d1 100644
--- a/src/proctable.cpp
+++ b/src/proctable.cpp
@@ -216,8 +216,8 @@ search_equal_func(GtkTreeModel *model,
COL_USER, &user,
-1);
- found = !((name && strstr(name, key))
- || (user && strstr(user, key)));
+ found = !((name && strcasestr(name, key))
+ || (user && strcasestr(user, key)));
g_free(name);
g_free(user);