[2.1.121][PATCH] Fix for unresolved symbol in the isofs.o module.

Niels Kristian Bech Jensen (nkbj@image.dk)
Thu, 10 Sep 1998 05:58:07 +0200 (CEST)


Hi,
This patch fixes the unresolved symbol bug in the isofs module (and
probably also the vfat module.) The bug is that the strnicmp symbol hadn't
been exported after the move to lib/string.c.

diff -urN linux-2.1.121/kernel/ksyms.c linux/kernel/ksyms.c
--- linux-2.1.121/kernel/ksyms.c Wed Aug 19 07:32:04 1998
+++ linux/kernel/ksyms.c Thu Sep 10 05:11:11 1998
@@ -401,3 +401,8 @@

/* time */
EXPORT_SYMBOL(get_fast_time);
+
+/* strnicmp is used only by isofs and vfat */
+#if defined(CONFIG_ISO9660_FS_MODULE) || defined(CONFIG_VFAT_FS_MODULE)
+EXPORT_SYMBOL(strnicmp);
+#endif

--
Niels Kristian Bech Jensen - nkbj@image.dk - http://www.image.dk/~nkbj/

---------->> Stop software piracy --- use free software! <<----------

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu Please read the FAQ at http://www.tux.org/lkml/faq.html