diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-10-29 02:10:03 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-10-29 02:10:03 +0000 |
commit | 7b584cbf8103cf78a8db3cbb08e378ff5a47a4b9 (patch) | |
tree | a283b998caf4727d0ddc8b9a342061d39c2db3ba /sys/netinet/ip_output.c | |
parent | a0d9dd4e06ca24923b8a0e6c811ac694972ae2e9 (diff) |
Get rid of unnecessary third argument in *_output routines of IPsec.
Diffstat (limited to 'sys/netinet/ip_output.c')
-rw-r--r-- | sys/netinet/ip_output.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c index 845804e3c0f..d29cafe4dc2 100644 --- a/sys/netinet/ip_output.c +++ b/sys/netinet/ip_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_output.c,v 1.50 1999/10/29 02:04:02 angelos Exp $ */ +/* $OpenBSD: ip_output.c,v 1.51 1999/10/29 02:10:02 angelos Exp $ */ /* $NetBSD: ip_output.c,v 1.28 1996/02/13 23:43:07 christos Exp $ */ /* @@ -472,8 +472,7 @@ ip_output(m0, va_alist) ip->ip_sum = in_cksum(m, hlen); } - error = (*(tdb->tdb_xform->xf_output))(m, gw, - tdb, &mp); + error = (*(tdb->tdb_xform->xf_output))(m, tdb, &mp); if (!error && mp == NULL) error = EFAULT; if (error) { |