diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-26 09:25:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-26 09:25:23 +0000 |
commit | 6aa6edb00aa211e3677bbe83a79f77a698463a78 (patch) | |
tree | 0d78960a0fcda70c8880a741fb843e94c28a0bb5 /sbin/isakmpd/pf_key_v2.c | |
parent | c300dc80ea9a11b57eb166b83bf23af534af067f (diff) |
pid_t cleanup
Diffstat (limited to 'sbin/isakmpd/pf_key_v2.c')
-rw-r--r-- | sbin/isakmpd/pf_key_v2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/isakmpd/pf_key_v2.c b/sbin/isakmpd/pf_key_v2.c index c20ef22b4af..d2fe21a1fd2 100644 --- a/sbin/isakmpd/pf_key_v2.c +++ b/sbin/isakmpd/pf_key_v2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf_key_v2.c,v 1.97 2002/02/21 20:12:56 angelos Exp $ */ +/* $OpenBSD: pf_key_v2.c,v 1.98 2002/05/26 09:24:35 deraadt Exp $ */ /* $EOM: pf_key_v2.c,v 1.79 2000/12/12 00:33:19 niklas Exp $ */ /* @@ -379,8 +379,8 @@ pf_key_v2_read (u_int32_t seq) { LOG_DBG ((LOG_SYSDEP, 90, "pf_key_v2_read:" - "bad version (%d) or PID (%d, mine is %d), ignored", - msg->sadb_msg_version, msg->sadb_msg_pid, + "bad version (%d) or PID (%ld, mine is %d), ignored", + msg->sadb_msg_version, (long)msg->sadb_msg_pid, getpid ())); goto cleanup; } |