From e8308d58b3031d2ac1e21ac180cb09d547e08f2c Mon Sep 17 00:00:00 2001 From: Jay Sorg Date: Sat, 19 Nov 2016 07:44:28 +0000 Subject: [PATCH] xrdp: do case insensitive compare for section names --- xrdp/xrdp_login_wnd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xrdp/xrdp_login_wnd.c b/xrdp/xrdp_login_wnd.c index 76fc59b0..37cd1e00 100644 --- a/xrdp/xrdp_login_wnd.c +++ b/xrdp/xrdp_login_wnd.c @@ -560,9 +560,9 @@ xrdp_wm_login_fill_in_combo(struct xrdp_wm *self, struct xrdp_bitmap *b) p = (char *)list_get_item(sections, i); file_read_section(fd, p, section_names, section_values); - if ((g_strncmp(p, "globals", 255) == 0) - || (g_strncmp(p, "channels", 255) == 0) - || (g_strncmp(p, "Logging", 255) == 0)) + if ((g_strncasecmp(p, "globals", 255) == 0) + || (g_strncasecmp(p, "channels", 255) == 0) + || (g_strncasecmp(p, "Logging", 255) == 0)) { } else