openap-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[openap-cvs] : busybox insmod.c,1.1.1.2,1.2


From: David Kimdon <address@hidden>
Subject: [openap-cvs] : busybox insmod.c,1.1.1.2,1.2
Date: Wed, 17 Jul 2002 16:51:21 -0400

Update of /cvsroot/openap/busybox
In directory subversions:/tmp/cvs-serv18096

Modified Files:
        insmod.c 
Log Message:
insmod.c: Reduce the size of two filename buffers from FILENAME_MAX to 128.
This makes insmod's bss smaller which in turn saves RAM.


Index: insmod.c
===================================================================
RCS file: /cvsroot/openap/busybox/insmod.c,v
retrieving revision 1.1.1.2
retrieving revision 1.2
diff -u -r1.1.1.2 -r1.2
--- insmod.c    23 Aug 2001 22:14:30 -0000      1.1.1.2
+++ insmod.c    17 Jul 2002 20:51:19 -0000      1.2
@@ -705,6 +705,8 @@
 static int n_ext_modules_used;
 extern int delete_module(const char *);
 
+#undef FILENAME_MAX
+#define FILENAME_MAX 128
 static char m_filename[FILENAME_MAX + 1];
 static char m_fullName[FILENAME_MAX + 1];
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]