diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-03-24 14:45:37 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-03-24 14:45:37 +0000 |
commit | 34987780fc8b1bf2c78a4e2c2bbdb1d623852a75 (patch) | |
tree | a0740506ae256bcae022faef9a8a24381b72e21c | |
parent | 7392f18ba442fb7223a65f1c1c0264f020b9a601 (diff) |
Merge with EOM 1.12
Fix comments
-rw-r--r-- | sbin/isakmpd/transport.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/isakmpd/transport.h b/sbin/isakmpd/transport.h index 61dbd5c1870..83524993f73 100644 --- a/sbin/isakmpd/transport.h +++ b/sbin/isakmpd/transport.h @@ -1,5 +1,5 @@ -/* $OpenBSD: transport.h,v 1.4 1999/02/26 03:52:00 niklas Exp $ */ -/* $EOM: transport.h,v 1.11 1999/02/14 00:15:16 niklas Exp $ */ +/* $OpenBSD: transport.h,v 1.5 1999/03/24 14:45:36 niklas Exp $ */ +/* $EOM: transport.h,v 1.12 1999/03/24 11:05:29 niklas Exp $ */ /* * Copyright (c) 1998 Niklas Hallqvist. All rights reserved. @@ -78,13 +78,13 @@ struct transport_vtbl { /* * Fill out a sockaddr structure with the transport's destination end's - * address info. XXX Why not size_t * as last arg? + * address info. XXX Why not size_t * instead of int *? */ void (*get_dst) (struct transport *, struct sockaddr **, int *); /* * Fill out a sockaddr structure with the transport's source end's - * address info. XXX Why not size_t * as last arg? + * address info. XXX Why not size_t * instead of int *? */ void (*get_src) (struct transport *, struct sockaddr **, int *); }; |