Module Name: src Committed By: pooka Date: Sun Jul 18 12:43:22 UTC 2010
Modified Files: src/tests/net/icmp: t_forward.c Log Message: fix routine name in error message To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/tests/net/icmp/t_forward.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/net/icmp/t_forward.c diff -u src/tests/net/icmp/t_forward.c:1.1 src/tests/net/icmp/t_forward.c:1.2 --- src/tests/net/icmp/t_forward.c:1.1 Sun Jul 4 19:30:59 2010 +++ src/tests/net/icmp/t_forward.c Sun Jul 18 12:43:22 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: t_forward.c,v 1.1 2010/07/04 19:30:59 pooka Exp $ */ +/* $NetBSD: t_forward.c,v 1.2 2010/07/18 12:43:22 pooka Exp $ */ /*- * Copyright (c) 2010 The NetBSD Foundation, Inc. @@ -29,7 +29,7 @@ #include <sys/cdefs.h> #ifndef lint -__RCSID("$NetBSD: t_forward.c,v 1.1 2010/07/04 19:30:59 pooka Exp $"); +__RCSID("$NetBSD: t_forward.c,v 1.2 2010/07/18 12:43:22 pooka Exp $"); #endif /* not lint */ #include <sys/types.h> @@ -69,7 +69,7 @@ int s, rv, ifnum; if ((s = rump_pub_shmif_create(busname, &ifnum)) != 0) { - atf_tc_fail("rump_pub_virtif_create(%d)", s); + atf_tc_fail("rump_pub_shmif_create(%d)", s); } if ((s = rump_sys_socket(PF_INET, SOCK_DGRAM, 0)) < 0) {