[PATCH] fix 2.5 compiles w/ networking off

From: Tomas Szepe (szepe@pinerecords.com)
Date: Fri Jan 03 2003 - 07:44:48 EST


All right I have to admit I can't think of another cunning simile.
We should compile w/ networking switched off entirely, too.

-- 
Tomas Szepe <szepe@pinerecords.com>

--- a/net/socket.c 2002-12-08 20:06:42.000000000 +0100 +++ b/net/socket.c 2003-01-03 13:31:20.000000000 +0100 @@ -742,11 +742,11 @@ err = dev_ioctl(cmd, (void *)arg); } else #endif /* CONFIG_NET */ -#ifdef WIRELESS_EXT +#if defined(CONFIG_NET) && defined (WIRELESS_EXT) if (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) { err = dev_ioctl(cmd, (void *)arg); } else -#endif /* WIRELESS_EXT */ +#endif /* CONFIG_NET && WIRELESS_EXT */ switch (cmd) { case FIOSETOWN: case SIOCSPGRP: - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Tue Jan 07 2003 - 22:00:21 EST