Current-Users archive

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

tyop in src/sys/net/rtsock.c



Hi,

there's a little tyop ('dot' instead of 'comma') in
sys/net/rtsock.c which leads to a failed "build.sh ...
release" (on amd64).
The following patch helps ;-)

Kurt

Index: sys/net/rtsock.c
===================================================================
RCS file: /cvsroot/src/sys/net/rtsock.c,v
retrieving revision 1.104
diff -u -r1.104 rtsock.c
--- sys/net/rtsock.c    24 May 2008 18:51:41 -0000      1.104
+++ sys/net/rtsock.c    24 May 2008 21:25:15 -0000
@@ -838,7 +838,7 @@
                }
 #ifdef DIAGNOSTIC
                if (m == NULL)
-                       panic("%s: called with wrong command". __func__);
+                       panic("%s: called with wrong command", __func__);
 #endif
                route_enqueue(m, sa ? sa->sa_family : 0);
        }


Home | Main Index | Thread Index | Old Index