summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>1999-10-29 02:04:03 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>1999-10-29 02:04:03 +0000
commita0d9dd4e06ca24923b8a0e6c811ac694972ae2e9 (patch)
tree427f75be774d48ee5338945a096786a2f4ce8199 /sys
parent5e47a25ec32ee847a0f47c8cc9b010e0e598bfd6 (diff)
Remove unused third argument from ipe4_output()
Diffstat (limited to 'sys')
-rw-r--r--sys/netinet/ip_output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c
index cef8b3570e2..845804e3c0f 100644
--- a/sys/netinet/ip_output.c
+++ b/sys/netinet/ip_output.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_output.c,v 1.49 1999/07/15 14:15:41 niklas Exp $ */
+/* $OpenBSD: ip_output.c,v 1.50 1999/10/29 02:04:02 angelos Exp $ */
/* $NetBSD: ip_output.c,v 1.28 1996/02/13 23:43:07 christos Exp $ */
/*
@@ -450,7 +450,7 @@ ip_output(m0, va_alist)
* checksum in their output routines.
*/
ip->ip_sum = in_cksum(m, hlen);
- error = ipe4_output(m, gw, tdb, &mp);
+ error = ipe4_output(m, tdb, &mp);
if (mp == NULL)
error = EFAULT;
if (error) {