diff options
| author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2003-10-07 15:02:29 +0000 |
|---|---|---|
| committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2003-10-07 15:02:29 +0000 |
| commit | 8c99329e89050baf3086e396ec4d8a3681e996dd (patch) | |
| tree | 5f4ed9becfd593cce714c2c7e5696bf88a7c21e5 /sys | |
| parent | 09ece458497314077b516c5f1be884ba01803dbf (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/net/net_osdep.c | 4 | ||||
| -rw-r--r-- | sys/netinet/in_gif.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/net/net_osdep.c b/sys/net/net_osdep.c index a035bae40b8d6..7cfb142907373 100644 --- a/sys/net/net_osdep.c +++ b/sys/net/net_osdep.c @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* $KAME: net_osdep.c,v 1.9 2001/04/06 09:22:05 itojun Exp $ */ +/* $KAME: net_osdep.c,v 1.12 2002/12/02 14:28:57 itojun Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -62,6 +62,6 @@ if_name(ifp) cp = nam[ifbufround]; snprintf(cp, IFNAMSIZ + 10, "%s%d", ifp->if_name, ifp->if_unit); - return((const char *)cp); + return ((const char *)cp); #undef MAXNUMBUF } diff --git a/sys/netinet/in_gif.c b/sys/netinet/in_gif.c index cdf094aafbdc8..187b2a4a6b3b2 100644 --- a/sys/netinet/in_gif.c +++ b/sys/netinet/in_gif.c @@ -210,7 +210,7 @@ in_gif_output(ifp, family, m) } error = ip_output(m, NULL, &sc->gif_ro, 0, NULL, NULL); - return(error); + return (error); } void |
