15 lines
507 B
Diff
15 lines
507 B
Diff
--- 14.12/common/lib/modules/fglrx/build_mod/kcl_str.c 2014-11-28 21:02:10.000000000 +0100
|
|
+++ 14.12_2/common/lib/modules/fglrx/build_mod/kcl_str.c 2015-03-08 13:25:11.568396701 +0100
|
|
@@ -169,7 +169,11 @@
|
|
const char* s2,
|
|
KCL_TYPE_SizeSigned count)
|
|
{
|
|
+#if LINUX_VERSION_CODE < KERNEL_VERSION(4,0,0)
|
|
return strnicmp(s1, s2, count);
|
|
+#else
|
|
+ return strncasecmp(s1, s2, count);
|
|
+#endif
|
|
}
|
|
|
|
/** \brief Locate character in string
|
|
|