Small feature fixes

Janos Farkas (chexum@bankinf.banki.hu)
Fri, 16 Feb 1996 12:47:03 +0100 (MET)


There's a small omission in the ipx code, which at least prevents
ifconfig to print the configured ipx addresses. In fact, this is not
enough to get that working, since ifconfig has some easy to spot typos
too, but that fix is sent to the maintainer.. :)

And another one in the makefile of the compressed i386 code, there was
not enough $'s to get the desired effect, or so I hope.. :)

Janos

diff -urN linux-1.3.64.orig/net/ipx/af_ipx.c linux.old/net/ipx/af_ipx.c
--- linux-1.3.64.orig/net/ipx/af_ipx.c Fri Feb 9 15:59:06 1996
+++ linux/net/ipx/af_ipx.c Thu Feb 15 23:16:19 1996
@@ -1032,6 +1032,7 @@
ipxif=ipxitf_find_using_phys(dev, ipx_map_frame_type(sipx->sipx_type));
if(ipxif==NULL)
return -EADDRNOTAVAIL;
+ sipx->sipx_family=AF_IPX;
sipx->sipx_network=ipxif->if_netnum;
memcpy(sipx->sipx_node, ipxif->if_node, sizeof(sipx->sipx_node));
memcpy_tofs(arg,&ifr,sizeof(ifr));

diff -urN linux-1.3.64.orig/arch/i386/boot/compressed/Makefile linux/arch/i386/boot/compressed/Makefile
--- linux-1.3.64.orig/arch/i386/boot/compressed/Makefile Thu Jan 25 20:01:33 1996
+++ linux/arch/i386/boot/compressed/Makefile Thu Feb 15 23:54:19 1996
@@ -43,7 +43,7 @@
# You cannot compress a file and have the kernel uncompress it, it must
# be stdin
piggy.o: $(SYSTEM)
- tmppiggy=/tmp/$$.piggy; \
+ tmppiggy=/tmp/$$$$.piggy; \
rm -f $$tmppiggy $$tmppiggy.gz; \
$(OBJDUMP) $(OBJDUMP_FLAGS) -o $(IMAGE_OFFSET) $(SYSTEM) > $$tmppiggy; \
gzip -f -9 < $$tmppiggy > $$tmppiggy.gz; \