NLS support and filesystems.c in 2.1.61

tenthumbs (10@dhack1-153.cybernex.net)
Sat, 1 Nov 1997 15:25:34 -0500 (EST)


I was tring NLS support and found that compiling fs/filesystems.c gave an
error message about no prototype for init_nls. It turns out nls.h is not
included. Here's a patch that should fix this.

==================================================================
--- linux-2.1.61/fs/filesystems.c.orig Sat Oct 25 19:16:05 1997
+++ linux-2.1.61/fs/filesystems.c Sat Nov 1 14:33:50 1997
@@ -33,6 +33,10 @@
#include <linux/lockd/bind.h>
#include <linux/lockd/xdr.h>
#include <linux/init.h>
+#ifdef CONFIG_NLS
+#include <linux/nls.h>
+#endif
+

extern void device_setup(void);
extern void binfmt_setup(void);