diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-27 04:21:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-27 04:21:39 +0000 |
commit | be818a3515d18fe09837751641f46a73b71ca2fa (patch) | |
tree | e09a1b6420dcea55066cc9fc25f15c8100c8cddd /sbin | |
parent | 0d12679f6356644970af765dfcacc0c74ad69160 (diff) |
correct pid handling
Diffstat (limited to 'sbin')
-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 d2fe21a1fd2..951305849f1 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.98 2002/05/26 09:24:35 deraadt Exp $ */ +/* $OpenBSD: pf_key_v2.c,v 1.99 2002/05/27 04:21:38 deraadt Exp $ */ /* $EOM: pf_key_v2.c,v 1.79 2000/12/12 00:33:19 niklas Exp $ */ /* @@ -380,8 +380,8 @@ pf_key_v2_read (u_int32_t seq) LOG_DBG ((LOG_SYSDEP, 90, "pf_key_v2_read:" "bad version (%d) or PID (%ld, mine is %d), ignored", - msg->sadb_msg_version, (long)msg->sadb_msg_pid, - getpid ())); + msg->sadb_msg_version, msg->sadb_msg_pid, + (long)getpid ())); goto cleanup; } } |