s/CFLAGS/CPPFLAGS/ for -D and -I.

remove lint error.
This commit is contained in:
itojun 1999-07-03 06:59:28 +00:00
parent 9a6abc8c5d
commit 95fa2d90fb
2 changed files with 18 additions and 6 deletions

View File

@ -1,9 +1,10 @@
# $NetBSD: Makefile,v 1.1 1999/07/01 20:15:27 itojun Exp $
# $NetBSD: Makefile,v 1.2 1999/07/03 06:59:28 itojun Exp $
LIB= ipsec
CFLAGS+=-g -DIPSEC_DEBUG
CFLAGS+=-DIPSEC
CFLAGS+=-DINET6
#CFLAGS+=-g
CPPFLAGS+=-DIPSEC_DEBUG
CPPFLAGS+=-DIPSEC
CPPFLAGS+=-DINET6
.PATH: ${.CURDIR}/../../sys/netkey
SRCS= pfkey.c pfkey_dump.c

View File

@ -28,7 +28,9 @@
*/
#include <sys/cdefs.h>
__RCSID("@(#) pfkey.c $Revision: 1.2 $");
#ifndef lint
__RCSID("@(#) pfkey.c $Revision: 1.3 $");
#endif
#include <sys/types.h>
#include <sys/param.h>
@ -1146,7 +1148,16 @@ static caddr_t pfkey_setsadbaddr(caddr_t buf, u_int type,
((struct sockaddr *)p)->sa_len = _SALENBYAF(family);
((struct sockaddr *)p)->sa_family = family;
_INPORTBYSA(p) = port;
switch (family) {
case AF_INET:
((struct sockaddr_in *)p)->sin_port = port;
break;
#ifdef INET6
case AF_INET6:
((struct sockaddr_in6 *)p)->sin6_port = port;
break;
#endif
}
memcpy(_INADDRBYSA(p), addr, _INALENBYAF(family));
return buf + len;