Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Sat, 31 Aug 2002 22:01:12 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Sat, 31 Aug 2002 22:01:12 -0400 Received: from blackbird.intercode.com.au ([203.32.101.10]:35857 "EHLO blackbird.intercode.com.au") by vger.kernel.org with ESMTP id ; Sat, 31 Aug 2002 22:01:12 -0400 Date: Sun, 1 Sep 2002 12:05:13 +1000 (EST) From: James Morris To: "David S. Miller" , cc: netdev@oss.sgi.com, Subject: [PATCH] ipv6 compile fix, __FUNCTION__ pasting, 2.5.33 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1133 Lines: 27 Another __FUNCTION__ pasting fix, for 2.5.33. - James -- James Morris diff -urN -X dontdiff linux-2.5.33.orig/net/ipv6/af_inet6.c linux-2.5.33.w1/net/ipv6/af_inet6.c --- linux-2.5.33.orig/net/ipv6/af_inet6.c Sun Sep 1 11:34:46 2002 +++ linux-2.5.33.w1/net/ipv6/af_inet6.c Sun Sep 1 12:00:07 2002 @@ -663,8 +663,8 @@ sizeof(struct raw6_sock), 0, SLAB_HWCACHE_ALIGN, 0, 0); if (!tcp6_sk_cachep || !udp6_sk_cachep || !raw6_sk_cachep) - printk(KERN_CRIT __FUNCTION__ - ": Can't create protocol sock SLAB caches!\n"); + printk(KERN_CRIT "%s: Can't create protocol sock SLAB " + "caches!\n", __FUNCTION__); /* Register the socket-side information for inet6_create. */ for(r = &inetsw6[0]; r < &inetsw6[SOCK_MAX]; ++r) - 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/