[BusyBox-cvs] busybox/scripts/config confdata.c,1.3,1.4
Glenn McGrath
bug1 at busybox.net
Fri Oct 3 08:29:02 UTC 2003
Update of /var/cvs/busybox/scripts/config
In directory winder:/tmp/cvs-serv3249/scripts/config
Modified Files:
confdata.c
Log Message:
Patch by Rob Landley, fix warning
Index: confdata.c
===================================================================
RCS file: /var/cvs/busybox/scripts/config/confdata.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- confdata.c 5 Aug 2003 02:18:24 -0000 1.3
+++ confdata.c 3 Oct 2003 08:28:59 -0000 1.4
@@ -342,13 +342,13 @@
if (out_h)
fprintf(out_h, "#undef %s\n", sym->name);
break;
-#if 0
case mod:
+#if 0
fprintf(out, "%s=m\n", sym->name);
if (out_h)
fprintf(out_h, "#define %s_MODULE 1\n", sym->name);
- break;
#endif
+ break;
case yes:
fprintf(out, "%s=y\n", sym->name);
if (out_h)
More information about the busybox-cvs
mailing list