diff src/ui_fileops.c @ 605:651ae2be1031

Use g_ascii_strncasecmp() instead of strncasecmp() where applicable. Add a FIXME where potential improper usage of strncasecmp() is made.
author zas_
date Thu, 08 May 2008 12:50:25 +0000
parents 9dc0513837b5
children 8268cbe682f1
line wrap: on
line diff
--- a/src/ui_fileops.c	Thu May 08 12:38:34 2008 +0000
+++ b/src/ui_fileops.c	Thu May 08 12:50:25 2008 +0000
@@ -645,6 +645,7 @@
 	p = strlen(path);
 	e = strlen(ext);
 
+	/* FIXME: utf8 */
 	return (p > e && strncasecmp(path + p - e, ext, e) == 0);
 }