summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sbin/photurisd/Makefile2
-rw-r--r--sbin/photurisd/api.c4
-rw-r--r--sbin/photurisd/api.h2
-rw-r--r--sbin/photurisd/attributes.c4
-rw-r--r--sbin/photurisd/attributes.h2
-rw-r--r--sbin/photurisd/buffer.c4
-rw-r--r--sbin/photurisd/buffer.h2
-rw-r--r--sbin/photurisd/compute_secrets.c4
-rw-r--r--sbin/photurisd/config.c4
-rw-r--r--sbin/photurisd/config.h2
-rw-r--r--sbin/photurisd/cookie.c4
-rw-r--r--sbin/photurisd/cookie.h2
-rw-r--r--sbin/photurisd/encrypt.h2
-rw-r--r--sbin/photurisd/exchange.c4
-rw-r--r--sbin/photurisd/exchange.h2
-rw-r--r--sbin/photurisd/handle_bad_cookie.c4
-rw-r--r--sbin/photurisd/handle_cookie_request.c4
-rw-r--r--sbin/photurisd/handle_cookie_response.c4
-rw-r--r--sbin/photurisd/handle_identity_request.c4
-rw-r--r--sbin/photurisd/handle_identity_response.c4
-rw-r--r--sbin/photurisd/handle_message_reject.c4
-rw-r--r--sbin/photurisd/handle_resource_limit.c4
-rw-r--r--sbin/photurisd/handle_spi_needed.c4
-rw-r--r--sbin/photurisd/handle_spi_update.c4
-rw-r--r--sbin/photurisd/handle_value_request.c4
-rw-r--r--sbin/photurisd/handle_value_response.c4
-rw-r--r--sbin/photurisd/handle_verification_failure.c4
-rw-r--r--sbin/photurisd/identity.c4
-rw-r--r--sbin/photurisd/identity.h2
-rw-r--r--sbin/photurisd/kernel.c4
-rw-r--r--sbin/photurisd/kernel.h2
-rw-r--r--sbin/photurisd/modulus.c2
-rw-r--r--sbin/photurisd/modulus.h2
-rw-r--r--sbin/photurisd/packet.c4
-rw-r--r--sbin/photurisd/packet.h2
-rw-r--r--sbin/photurisd/packets.h2
-rw-r--r--sbin/photurisd/photuris.h2
-rw-r--r--sbin/photurisd/photuris_cookie_request.c4
-rw-r--r--sbin/photurisd/photuris_cookie_response.c4
-rw-r--r--sbin/photurisd/photuris_error_message.c4
-rw-r--r--sbin/photurisd/photuris_identity_request.c4
-rw-r--r--sbin/photurisd/photuris_identity_response.c4
-rw-r--r--sbin/photurisd/photuris_packet_encrypt.c4
-rw-r--r--sbin/photurisd/photuris_spi_needed.c4
-rw-r--r--sbin/photurisd/photuris_spi_update.c4
-rw-r--r--sbin/photurisd/photuris_value_request.c4
-rw-r--r--sbin/photurisd/photuris_value_response.c4
-rw-r--r--sbin/photurisd/photurisd.c4
-rw-r--r--sbin/photurisd/schedule.c4
-rw-r--r--sbin/photurisd/schedule.h2
-rw-r--r--sbin/photurisd/scheme.c4
-rw-r--r--sbin/photurisd/scheme.h2
-rw-r--r--sbin/photurisd/secrets.h2
-rw-r--r--sbin/photurisd/server.c4
-rw-r--r--sbin/photurisd/server.h2
-rw-r--r--sbin/photurisd/spi.c4
-rw-r--r--sbin/photurisd/spi.h2
-rw-r--r--sbin/photurisd/state.c2
-rw-r--r--sbin/photurisd/state.h2
-rw-r--r--sbin/photurisd/userdefs.h2
-rw-r--r--sbin/photurisd/utypes.h2
-rw-r--r--sbin/photurisd/validity.c4
-rw-r--r--sbin/photurisd/validity.h2
-rw-r--r--sbin/startkey/Makefile2
-rw-r--r--sbin/startkey/startkey.c4
-rw-r--r--sbin/sysctl/pathconf.c3
-rw-r--r--sbin/wsconsctl/util.c1
67 files changed, 153 insertions, 59 deletions
diff --git a/sbin/photurisd/Makefile b/sbin/photurisd/Makefile
index e2c2f7c5ba5..b5cf1712878 100644
--- a/sbin/photurisd/Makefile
+++ b/sbin/photurisd/Makefile
@@ -1,3 +1,5 @@
+# $OpenBSD: Makefile,v 1.4 2001/01/28 22:45:05 niklas Exp $
+
PROG= photurisd
LDADD= -lcrypto -ldes
DPADD= ${LIBCRYPTO} ${LIBDES}
diff --git a/sbin/photurisd/api.c b/sbin/photurisd/api.c
index 3a0dc87adb7..6537543cae2 100644
--- a/sbin/photurisd/api.c
+++ b/sbin/photurisd/api.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: api.c,v 1.5 2001/01/28 22:45:06 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -37,7 +39,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: api.c,v 1.4 2000/12/15 02:50:37 provos Exp $";
+static char rcsid[] = "$OpenBSD: api.c,v 1.5 2001/01/28 22:45:06 niklas Exp $";
#endif
#define _API_C_
diff --git a/sbin/photurisd/api.h b/sbin/photurisd/api.h
index bf5b3316f86..50a30566580 100644
--- a/sbin/photurisd/api.h
+++ b/sbin/photurisd/api.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: api.h,v 1.3 2001/01/28 22:45:06 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
diff --git a/sbin/photurisd/attributes.c b/sbin/photurisd/attributes.c
index 1ce35c155f2..1bff2b41b7e 100644
--- a/sbin/photurisd/attributes.c
+++ b/sbin/photurisd/attributes.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: attributes.c,v 1.3 2001/01/28 22:45:06 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -33,7 +35,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: attributes.c,v 1.2 2000/12/15 02:50:37 provos Exp $";
+static char rcsid[] = "$OpenBSD: attributes.c,v 1.3 2001/01/28 22:45:06 niklas Exp $";
#endif
#define _ATTRIBUTES_C_
diff --git a/sbin/photurisd/attributes.h b/sbin/photurisd/attributes.h
index 4429b11f41c..6efc5180d10 100644
--- a/sbin/photurisd/attributes.h
+++ b/sbin/photurisd/attributes.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: attributes.h,v 1.3 2001/01/28 22:45:06 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
diff --git a/sbin/photurisd/buffer.c b/sbin/photurisd/buffer.c
index 2a93a6687f5..164316123dc 100644
--- a/sbin/photurisd/buffer.c
+++ b/sbin/photurisd/buffer.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: buffer.c,v 1.3 2001/01/28 22:45:06 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -33,7 +35,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: buffer.c,v 1.2 2000/12/15 02:50:37 provos Exp $";
+static char rcsid[] = "$OpenBSD: buffer.c,v 1.3 2001/01/28 22:45:06 niklas Exp $";
#endif
#include <sys/types.h>
diff --git a/sbin/photurisd/buffer.h b/sbin/photurisd/buffer.h
index 95527bc1917..5cf6f5491e5 100644
--- a/sbin/photurisd/buffer.h
+++ b/sbin/photurisd/buffer.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: buffer.h,v 1.3 2001/01/28 22:45:06 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: buffer.h,v 1.2 2000/12/15 02:50:37 provos Exp $ */
/*
* buffer.h:
* variables with buffers.
diff --git a/sbin/photurisd/compute_secrets.c b/sbin/photurisd/compute_secrets.c
index 7750e711b8a..9e110d71ad4 100644
--- a/sbin/photurisd/compute_secrets.c
+++ b/sbin/photurisd/compute_secrets.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: compute_secrets.c,v 1.5 2001/01/28 22:45:07 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: compute_secrets.c,v 1.4 2000/12/15 02:50:37 provos Exp $";
+static char rcsid[] = "$OpenBSD: compute_secrets.c,v 1.5 2001/01/28 22:45:07 niklas Exp $";
#endif
#define _SECRETS_C_
diff --git a/sbin/photurisd/config.c b/sbin/photurisd/config.c
index 393a3139ab1..6c301e5fee4 100644
--- a/sbin/photurisd/config.c
+++ b/sbin/photurisd/config.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: config.c,v 1.7 2001/01/28 22:45:07 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -33,7 +35,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: config.c,v 1.6 2001/01/17 19:41:07 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: config.c,v 1.7 2001/01/28 22:45:07 niklas Exp $";
#endif
#define _CONFIG_C_
diff --git a/sbin/photurisd/config.h b/sbin/photurisd/config.h
index 8b2af517c79..e356439481f 100644
--- a/sbin/photurisd/config.h
+++ b/sbin/photurisd/config.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: config.h,v 1.4 2001/01/28 22:45:07 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: config.h,v 1.3 2000/12/15 02:50:37 provos Exp $ */
/*
* config.h:
* handling config
diff --git a/sbin/photurisd/cookie.c b/sbin/photurisd/cookie.c
index 75646e46657..20672dfafed 100644
--- a/sbin/photurisd/cookie.c
+++ b/sbin/photurisd/cookie.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: cookie.c,v 1.3 2001/01/28 22:45:07 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -33,7 +35,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: cookie.c,v 1.2 2000/12/15 02:50:37 provos Exp $";
+static char rcsid[] = "$OpenBSD: cookie.c,v 1.3 2001/01/28 22:45:07 niklas Exp $";
#endif
#define _COOKIE_C_
diff --git a/sbin/photurisd/cookie.h b/sbin/photurisd/cookie.h
index a4ba92df61f..3846a605e20 100644
--- a/sbin/photurisd/cookie.h
+++ b/sbin/photurisd/cookie.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: cookie.h,v 1.3 2001/01/28 22:45:07 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: cookie.h,v 1.2 2000/12/15 02:50:38 provos Exp $ */
/*
* cookie.h:
* cookie generation header file
diff --git a/sbin/photurisd/encrypt.h b/sbin/photurisd/encrypt.h
index 8e2faa5327f..b2d0a25d022 100644
--- a/sbin/photurisd/encrypt.h
+++ b/sbin/photurisd/encrypt.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: encrypt.h,v 1.3 2001/01/28 22:45:07 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: encrypt.h,v 1.2 2000/12/15 02:50:38 provos Exp $ */
/*
* encrypt.h:
* prototypes for photuris_packet_encrypt.c
diff --git a/sbin/photurisd/exchange.c b/sbin/photurisd/exchange.c
index f19301c9f55..5a80d8f1d04 100644
--- a/sbin/photurisd/exchange.c
+++ b/sbin/photurisd/exchange.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: exchange.c,v 1.5 2001/01/28 22:45:07 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -33,7 +35,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: exchange.c,v 1.4 2000/12/15 01:58:27 provos Exp $";
+static char rcsid[] = "$OpenBSD: exchange.c,v 1.5 2001/01/28 22:45:07 niklas Exp $";
#endif
#define _EXCHANGE_C_
diff --git a/sbin/photurisd/exchange.h b/sbin/photurisd/exchange.h
index e93e1f9ab27..b5ddb139cff 100644
--- a/sbin/photurisd/exchange.h
+++ b/sbin/photurisd/exchange.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: exchange.h,v 1.4 2001/01/28 22:45:08 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: exchange.h,v 1.3 2000/12/15 02:50:38 provos Exp $ */
/*
* exchange.h:
* exchange generation header file
diff --git a/sbin/photurisd/handle_bad_cookie.c b/sbin/photurisd/handle_bad_cookie.c
index f8ceadff8d2..25e3e523737 100644
--- a/sbin/photurisd/handle_bad_cookie.c
+++ b/sbin/photurisd/handle_bad_cookie.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: handle_bad_cookie.c,v 1.4 2001/01/28 22:45:08 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: handle_bad_cookie.c,v 1.3 2000/12/15 02:50:38 provos Exp $";
+static char rcsid[] = "$OpenBSD: handle_bad_cookie.c,v 1.4 2001/01/28 22:45:08 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/handle_cookie_request.c b/sbin/photurisd/handle_cookie_request.c
index d0c33534970..1e40cf943bd 100644
--- a/sbin/photurisd/handle_cookie_request.c
+++ b/sbin/photurisd/handle_cookie_request.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: handle_cookie_request.c,v 1.3 2001/01/28 22:45:08 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: handle_cookie_request.c,v 1.2 2000/12/15 02:50:38 provos Exp $";
+static char rcsid[] = "$OpenBSD: handle_cookie_request.c,v 1.3 2001/01/28 22:45:08 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/handle_cookie_response.c b/sbin/photurisd/handle_cookie_response.c
index 38f1703886c..b26311faee1 100644
--- a/sbin/photurisd/handle_cookie_response.c
+++ b/sbin/photurisd/handle_cookie_response.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: handle_cookie_response.c,v 1.6 2001/01/28 22:45:08 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: handle_cookie_response.c,v 1.5 2000/12/15 02:50:38 provos Exp $";
+static char rcsid[] = "$OpenBSD: handle_cookie_response.c,v 1.6 2001/01/28 22:45:08 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/handle_identity_request.c b/sbin/photurisd/handle_identity_request.c
index 3fb4303020a..ecb0a0d8db9 100644
--- a/sbin/photurisd/handle_identity_request.c
+++ b/sbin/photurisd/handle_identity_request.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: handle_identity_request.c,v 1.6 2001/01/28 22:45:08 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -33,7 +35,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: handle_identity_request.c,v 1.5 2000/12/15 02:50:38 provos Exp $";
+static char rcsid[] = "$OpenBSD: handle_identity_request.c,v 1.6 2001/01/28 22:45:08 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/handle_identity_response.c b/sbin/photurisd/handle_identity_response.c
index b2d437be2ab..73e60ed117b 100644
--- a/sbin/photurisd/handle_identity_response.c
+++ b/sbin/photurisd/handle_identity_response.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: handle_identity_response.c,v 1.6 2001/01/28 22:45:09 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: handle_identity_response.c,v 1.5 2000/12/15 02:50:38 provos Exp $";
+static char rcsid[] = "$OpenBSD: handle_identity_response.c,v 1.6 2001/01/28 22:45:09 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/handle_message_reject.c b/sbin/photurisd/handle_message_reject.c
index e5793cae4a1..20cd40b5d51 100644
--- a/sbin/photurisd/handle_message_reject.c
+++ b/sbin/photurisd/handle_message_reject.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: handle_message_reject.c,v 1.4 2001/01/28 22:45:09 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: handle_message_reject.c,v 1.3 2000/12/15 02:50:38 provos Exp $";
+static char rcsid[] = "$OpenBSD: handle_message_reject.c,v 1.4 2001/01/28 22:45:09 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/handle_resource_limit.c b/sbin/photurisd/handle_resource_limit.c
index 511113ad407..0c3a5210cb1 100644
--- a/sbin/photurisd/handle_resource_limit.c
+++ b/sbin/photurisd/handle_resource_limit.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: handle_resource_limit.c,v 1.4 2001/01/28 22:45:09 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: handle_resource_limit.c,v 1.3 2000/12/15 02:50:38 provos Exp $";
+static char rcsid[] = "$OpenBSD: handle_resource_limit.c,v 1.4 2001/01/28 22:45:09 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/handle_spi_needed.c b/sbin/photurisd/handle_spi_needed.c
index e71b945d58a..f29a1ee06b8 100644
--- a/sbin/photurisd/handle_spi_needed.c
+++ b/sbin/photurisd/handle_spi_needed.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: handle_spi_needed.c,v 1.5 2001/01/28 22:45:09 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: handle_spi_needed.c,v 1.4 2000/12/15 02:50:38 provos Exp $";
+static char rcsid[] = "$OpenBSD: handle_spi_needed.c,v 1.5 2001/01/28 22:45:09 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/handle_spi_update.c b/sbin/photurisd/handle_spi_update.c
index a7908c07aad..57ccf518289 100644
--- a/sbin/photurisd/handle_spi_update.c
+++ b/sbin/photurisd/handle_spi_update.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: handle_spi_update.c,v 1.7 2001/01/28 22:45:10 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: handle_spi_update.c,v 1.6 2000/12/15 02:50:38 provos Exp $";
+static char rcsid[] = "$OpenBSD: handle_spi_update.c,v 1.7 2001/01/28 22:45:10 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/handle_value_request.c b/sbin/photurisd/handle_value_request.c
index d728c9339c7..bb63a2a9dc4 100644
--- a/sbin/photurisd/handle_value_request.c
+++ b/sbin/photurisd/handle_value_request.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: handle_value_request.c,v 1.7 2001/01/28 22:45:10 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: handle_value_request.c,v 1.6 2000/12/15 07:29:44 provos Exp $";
+static char rcsid[] = "$OpenBSD: handle_value_request.c,v 1.7 2001/01/28 22:45:10 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/handle_value_response.c b/sbin/photurisd/handle_value_response.c
index cb72022ae99..9ffee8aaf7b 100644
--- a/sbin/photurisd/handle_value_response.c
+++ b/sbin/photurisd/handle_value_response.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: handle_value_response.c,v 1.5 2001/01/28 22:45:10 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: handle_value_response.c,v 1.4 2000/12/15 02:50:38 provos Exp $";
+static char rcsid[] = "$OpenBSD: handle_value_response.c,v 1.5 2001/01/28 22:45:10 niklas Exp $";
#endif
#include <stdlib.h>
diff --git a/sbin/photurisd/handle_verification_failure.c b/sbin/photurisd/handle_verification_failure.c
index c389e69e9f6..bafaae6d98d 100644
--- a/sbin/photurisd/handle_verification_failure.c
+++ b/sbin/photurisd/handle_verification_failure.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: handle_verification_failure.c,v 1.4 2001/01/28 22:45:10 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: handle_verification_failure.c,v 1.3 2000/12/15 02:50:38 provos Exp $";
+static char rcsid[] = "$OpenBSD: handle_verification_failure.c,v 1.4 2001/01/28 22:45:10 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/identity.c b/sbin/photurisd/identity.c
index 1ed700f414a..39083d26a5d 100644
--- a/sbin/photurisd/identity.c
+++ b/sbin/photurisd/identity.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: identity.c,v 1.5 2001/01/28 22:45:10 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -33,7 +35,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: identity.c,v 1.4 2000/12/15 02:50:38 provos Exp $";
+static char rcsid[] = "$OpenBSD: identity.c,v 1.5 2001/01/28 22:45:10 niklas Exp $";
#endif
#define _IDENTITY_C_
diff --git a/sbin/photurisd/identity.h b/sbin/photurisd/identity.h
index 15917ddbccb..b5032f8e7a3 100644
--- a/sbin/photurisd/identity.h
+++ b/sbin/photurisd/identity.h
@@ -1,3 +1,4 @@
+/* $OpenBSD */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id */
/*
* identity.h:
* identity for a security association
diff --git a/sbin/photurisd/kernel.c b/sbin/photurisd/kernel.c
index 90ef9b8e2c4..fe593952510 100644
--- a/sbin/photurisd/kernel.c
+++ b/sbin/photurisd/kernel.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: kernel.c,v 1.21 2001/01/28 22:45:11 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -39,7 +41,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: kernel.c,v 1.20 2000/12/16 08:31:56 provos Exp $";
+static char rcsid[] = "$OpenBSD: kernel.c,v 1.21 2001/01/28 22:45:11 niklas Exp $";
#endif
#include <time.h>
diff --git a/sbin/photurisd/kernel.h b/sbin/photurisd/kernel.h
index b1d26541f2d..5f23c6c1567 100644
--- a/sbin/photurisd/kernel.h
+++ b/sbin/photurisd/kernel.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: kernel.h,v 1.12 2001/01/28 22:45:11 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: kernel.h,v 1.11 2000/12/16 08:31:56 provos Exp $ */
/*
* kernel.h:
* security paramter index creation.
diff --git a/sbin/photurisd/modulus.c b/sbin/photurisd/modulus.c
index 05671a8fb82..dc4832d96f2 100644
--- a/sbin/photurisd/modulus.c
+++ b/sbin/photurisd/modulus.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: modulus.c,v 1.5 2001/01/28 22:45:12 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
diff --git a/sbin/photurisd/modulus.h b/sbin/photurisd/modulus.h
index d8491a856c9..935f06abe94 100644
--- a/sbin/photurisd/modulus.h
+++ b/sbin/photurisd/modulus.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: modulus.h,v 1.4 2001/01/28 22:45:12 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: modulus.h,v 1.3 2000/12/15 01:58:27 provos Exp $ */
/*
* modulus.h:
* modulus handling functions
diff --git a/sbin/photurisd/packet.c b/sbin/photurisd/packet.c
index ff807797d5a..a7c85787a3a 100644
--- a/sbin/photurisd/packet.c
+++ b/sbin/photurisd/packet.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: packet.c,v 1.4 2001/01/28 22:45:12 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -33,7 +35,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: packet.c,v 1.3 2000/12/15 02:50:38 provos Exp $";
+static char rcsid[] = "$OpenBSD: packet.c,v 1.4 2001/01/28 22:45:12 niklas Exp $";
#endif
#define _PACKET_C_
diff --git a/sbin/photurisd/packet.h b/sbin/photurisd/packet.h
index 66d3aeaebc5..88ed44902b9 100644
--- a/sbin/photurisd/packet.h
+++ b/sbin/photurisd/packet.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: packet.h,v 1.3 2001/01/28 22:45:12 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: packet.h,v 1.2 2000/12/15 02:50:38 provos Exp $ */
/*
* packet.h:
* prototyped for receiving and anwsering packets
diff --git a/sbin/photurisd/packets.h b/sbin/photurisd/packets.h
index 0cea3f6bfad..b149b94d55e 100644
--- a/sbin/photurisd/packets.h
+++ b/sbin/photurisd/packets.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: packets.h,v 1.3 2001/01/28 22:45:12 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: packets.h,v 1.2 2000/12/15 02:50:39 provos Exp $ */
/*
* packets.h:
*/
diff --git a/sbin/photurisd/photuris.h b/sbin/photurisd/photuris.h
index 0ea3282efd0..22b1aad4035 100644
--- a/sbin/photurisd/photuris.h
+++ b/sbin/photurisd/photuris.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: photuris.h,v 1.3 2001/01/28 22:45:13 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: photuris.h,v 1.2 2000/12/15 02:50:39 provos Exp $ */
/*
* photuris.h:
* general header file
diff --git a/sbin/photurisd/photuris_cookie_request.c b/sbin/photurisd/photuris_cookie_request.c
index 2dd29034a34..0ea47236aaf 100644
--- a/sbin/photurisd/photuris_cookie_request.c
+++ b/sbin/photurisd/photuris_cookie_request.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: photuris_cookie_request.c,v 1.4 2001/01/28 22:45:13 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: photuris_cookie_request.c,v 1.3 2000/12/15 02:50:39 provos Exp $";
+static char rcsid[] = "$OpenBSD: photuris_cookie_request.c,v 1.4 2001/01/28 22:45:13 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/photuris_cookie_response.c b/sbin/photurisd/photuris_cookie_response.c
index 04eaad7f00b..3b51fa21dd0 100644
--- a/sbin/photurisd/photuris_cookie_response.c
+++ b/sbin/photurisd/photuris_cookie_response.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: photuris_cookie_response.c,v 1.3 2001/01/28 22:45:13 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: photuris_cookie_response.c,v 1.2 2000/12/15 02:50:39 provos Exp $";
+static char rcsid[] = "$OpenBSD: photuris_cookie_response.c,v 1.3 2001/01/28 22:45:13 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/photuris_error_message.c b/sbin/photurisd/photuris_error_message.c
index 7940888bbfd..0b7974235e7 100644
--- a/sbin/photurisd/photuris_error_message.c
+++ b/sbin/photurisd/photuris_error_message.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: photuris_error_message.c,v 1.3 2001/01/28 22:45:13 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: photuris_error_message.c,v 1.2 2000/12/15 02:50:39 provos Exp $";
+static char rcsid[] = "$OpenBSD: photuris_error_message.c,v 1.3 2001/01/28 22:45:13 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/photuris_identity_request.c b/sbin/photurisd/photuris_identity_request.c
index 2d8859423ea..17b8cb67996 100644
--- a/sbin/photurisd/photuris_identity_request.c
+++ b/sbin/photurisd/photuris_identity_request.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: photuris_identity_request.c,v 1.3 2001/01/28 22:45:14 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: photuris_identity_request.c,v 1.2 2000/12/15 02:50:39 provos Exp $";
+static char rcsid[] = "$OpenBSD: photuris_identity_request.c,v 1.3 2001/01/28 22:45:14 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/photuris_identity_response.c b/sbin/photurisd/photuris_identity_response.c
index e312900a3aa..cde263b6e79 100644
--- a/sbin/photurisd/photuris_identity_response.c
+++ b/sbin/photurisd/photuris_identity_response.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: photuris_identity_response.c,v 1.3 2001/01/28 22:45:14 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: photuris_identity_response.c,v 1.2 2000/12/15 02:50:39 provos Exp $";
+static char rcsid[] = "$OpenBSD: photuris_identity_response.c,v 1.3 2001/01/28 22:45:14 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/photuris_packet_encrypt.c b/sbin/photurisd/photuris_packet_encrypt.c
index 790f963ab70..69ca85a485e 100644
--- a/sbin/photurisd/photuris_packet_encrypt.c
+++ b/sbin/photurisd/photuris_packet_encrypt.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: photuris_packet_encrypt.c,v 1.4 2001/01/28 22:45:14 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -33,7 +35,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: photuris_packet_encrypt.c,v 1.3 2000/12/15 02:50:39 provos Exp $";
+static char rcsid[] = "$OpenBSD: photuris_packet_encrypt.c,v 1.4 2001/01/28 22:45:14 niklas Exp $";
#endif
#define _ENCRYPT_C_
diff --git a/sbin/photurisd/photuris_spi_needed.c b/sbin/photurisd/photuris_spi_needed.c
index ba323a4ae57..f58f20d162e 100644
--- a/sbin/photurisd/photuris_spi_needed.c
+++ b/sbin/photurisd/photuris_spi_needed.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: photuris_spi_needed.c,v 1.3 2001/01/28 22:45:14 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -33,7 +35,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: photuris_spi_needed.c,v 1.2 2000/12/15 02:50:39 provos Exp $";
+static char rcsid[] = "$OpenBSD: photuris_spi_needed.c,v 1.3 2001/01/28 22:45:14 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/photuris_spi_update.c b/sbin/photurisd/photuris_spi_update.c
index 1afdd16e1b2..3a9cfcdbae1 100644
--- a/sbin/photurisd/photuris_spi_update.c
+++ b/sbin/photurisd/photuris_spi_update.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: photuris_spi_update.c,v 1.3 2001/01/28 22:45:15 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: photuris_spi_update.c,v 1.2 2000/12/15 02:50:39 provos Exp $";
+static char rcsid[] = "$OpenBSD: photuris_spi_update.c,v 1.3 2001/01/28 22:45:15 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/photuris_value_request.c b/sbin/photurisd/photuris_value_request.c
index 6cc444d00b6..43985492381 100644
--- a/sbin/photurisd/photuris_value_request.c
+++ b/sbin/photurisd/photuris_value_request.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: photuris_value_request.c,v 1.3 2001/01/28 22:45:15 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: photuris_value_request.c,v 1.2 2000/12/15 02:50:39 provos Exp $";
+static char rcsid[] = "$OpenBSD: photuris_value_request.c,v 1.3 2001/01/28 22:45:15 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/photuris_value_response.c b/sbin/photurisd/photuris_value_response.c
index ce898c5ae69..66bc7f7b253 100644
--- a/sbin/photurisd/photuris_value_response.c
+++ b/sbin/photurisd/photuris_value_response.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: photuris_value_response.c,v 1.3 2001/01/28 22:45:15 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -34,7 +36,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: photuris_value_response.c,v 1.2 2000/12/15 02:50:39 provos Exp $";
+static char rcsid[] = "$OpenBSD: photuris_value_response.c,v 1.3 2001/01/28 22:45:15 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/photurisd/photurisd.c b/sbin/photurisd/photurisd.c
index 30169cbf9c5..0aa5141005c 100644
--- a/sbin/photurisd/photurisd.c
+++ b/sbin/photurisd/photurisd.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: photurisd.c,v 1.10 2001/01/28 22:45:15 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -32,7 +34,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: photurisd.c,v 1.9 2000/12/15 02:50:39 provos Exp $";
+static char rcsid[] = "$OpenBSD: photurisd.c,v 1.10 2001/01/28 22:45:15 niklas Exp $";
#endif
#define _PHOTURIS_C_
diff --git a/sbin/photurisd/schedule.c b/sbin/photurisd/schedule.c
index d6bcacf849b..b48f25834e1 100644
--- a/sbin/photurisd/schedule.c
+++ b/sbin/photurisd/schedule.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: schedule.c,v 1.6 2001/01/28 22:45:15 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -35,7 +37,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: schedule.c,v 1.5 2000/12/15 02:50:39 provos Exp $";
+static char rcsid[] = "$OpenBSD: schedule.c,v 1.6 2001/01/28 22:45:15 niklas Exp $";
#endif
#define _SCHEDULE_C_
diff --git a/sbin/photurisd/schedule.h b/sbin/photurisd/schedule.h
index bca5c2e7e75..38b0560b0a1 100644
--- a/sbin/photurisd/schedule.h
+++ b/sbin/photurisd/schedule.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: schedule.h,v 1.3 2001/01/28 22:45:16 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: schedule.h,v 1.2 2000/12/15 02:50:39 provos Exp $ */
/*
* schedule.h:
* schedule events like retransmission and clean ups.
diff --git a/sbin/photurisd/scheme.c b/sbin/photurisd/scheme.c
index d374e610844..54d07f1aac2 100644
--- a/sbin/photurisd/scheme.c
+++ b/sbin/photurisd/scheme.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: scheme.c,v 1.5 2001/01/28 22:45:16 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -33,7 +35,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: scheme.c,v 1.4 2000/12/15 02:50:39 provos Exp $";
+static char rcsid[] = "$OpenBSD: scheme.c,v 1.5 2001/01/28 22:45:16 niklas Exp $";
#endif
#define _SCHEME_C_
diff --git a/sbin/photurisd/scheme.h b/sbin/photurisd/scheme.h
index 830a67f69f7..481438d9a88 100644
--- a/sbin/photurisd/scheme.h
+++ b/sbin/photurisd/scheme.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: scheme.h,v 1.3 2001/01/28 22:45:16 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: scheme.h,v 1.2 2000/12/15 02:50:39 provos Exp $ */
/*
* scheme.h:
* security paramter index creation.
diff --git a/sbin/photurisd/secrets.h b/sbin/photurisd/secrets.h
index e7c0381ed62..2eb4561bae9 100644
--- a/sbin/photurisd/secrets.h
+++ b/sbin/photurisd/secrets.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: secrets.h,v 1.4 2001/01/28 22:45:16 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: secrets.h,v 1.3 2000/12/15 01:58:27 provos Exp $ */
/*
* secrets.h:
* prototypes for compute_secrets.c
diff --git a/sbin/photurisd/server.c b/sbin/photurisd/server.c
index 93dfb7ae218..2b9320d13b8 100644
--- a/sbin/photurisd/server.c
+++ b/sbin/photurisd/server.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: server.c,v 1.9 2001/01/28 22:45:17 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -35,7 +37,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: server.c,v 1.8 2001/01/17 19:41:08 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: server.c,v 1.9 2001/01/28 22:45:17 niklas Exp $";
#endif
#define _SERVER_C_
diff --git a/sbin/photurisd/server.h b/sbin/photurisd/server.h
index 926f46bc49e..3b16db30def 100644
--- a/sbin/photurisd/server.h
+++ b/sbin/photurisd/server.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: server.h,v 1.3 2001/01/28 22:45:17 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: server.h,v 1.2 2000/12/15 02:50:39 provos Exp $ */
/*
* server.h:
* handling interfaces and communication
diff --git a/sbin/photurisd/spi.c b/sbin/photurisd/spi.c
index d7629528420..76155ca7284 100644
--- a/sbin/photurisd/spi.c
+++ b/sbin/photurisd/spi.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: spi.c,v 1.8 2001/01/28 22:45:17 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -33,7 +35,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: spi.c,v 1.7 2000/12/15 02:50:39 provos Exp $";
+static char rcsid[] = "$OpenBSD: spi.c,v 1.8 2001/01/28 22:45:17 niklas Exp $";
#endif
#define _SPI_C_
diff --git a/sbin/photurisd/spi.h b/sbin/photurisd/spi.h
index 4c66dc68879..015ca2f1c94 100644
--- a/sbin/photurisd/spi.h
+++ b/sbin/photurisd/spi.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: spi.h,v 1.7 2001/01/28 22:45:17 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: spi.h,v 1.6 2000/12/15 02:50:40 provos Exp $ */
/*
* spi.h:
* security paramter index creation.
diff --git a/sbin/photurisd/state.c b/sbin/photurisd/state.c
index 03eb0f0a846..5eefea4c62a 100644
--- a/sbin/photurisd/state.c
+++ b/sbin/photurisd/state.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: state.c,v 1.8 2001/01/28 22:45:18 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
diff --git a/sbin/photurisd/state.h b/sbin/photurisd/state.h
index 00ac2dd02c3..23d4a58c359 100644
--- a/sbin/photurisd/state.h
+++ b/sbin/photurisd/state.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: state.h,v 1.7 2001/01/28 22:45:18 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: state.h,v 1.6 2000/12/15 02:50:40 provos Exp $ */
/*
* state.h:
* state object
diff --git a/sbin/photurisd/userdefs.h b/sbin/photurisd/userdefs.h
index 50655adf81b..0cf4f801024 100644
--- a/sbin/photurisd/userdefs.h
+++ b/sbin/photurisd/userdefs.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: userdefs.h,v 1.3 2001/01/28 22:45:18 niklas Exp $ */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id: userdefs.h,v 1.2 2000/12/15 02:50:40 provos Exp $ */
/*
* userdefs.h:
* handling userdefs
diff --git a/sbin/photurisd/utypes.h b/sbin/photurisd/utypes.h
index 097896c1f08..68386c11cee 100644
--- a/sbin/photurisd/utypes.h
+++ b/sbin/photurisd/utypes.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: utypes.h,v 1.3 2001/01/28 22:45:18 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
diff --git a/sbin/photurisd/validity.c b/sbin/photurisd/validity.c
index ad37112e292..fa75d0e900c 100644
--- a/sbin/photurisd/validity.c
+++ b/sbin/photurisd/validity.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: validity.c,v 1.4 2001/01/28 22:45:18 niklas Exp $ */
+
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -33,7 +35,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: validity.c,v 1.3 2000/12/15 02:50:40 provos Exp $";
+static char rcsid[] = "$OpenBSD: validity.c,v 1.4 2001/01/28 22:45:18 niklas Exp $";
#endif
#define _VALIDITY_C_
diff --git a/sbin/photurisd/validity.h b/sbin/photurisd/validity.h
index 7bde51d8a6e..16b77cf3a76 100644
--- a/sbin/photurisd/validity.h
+++ b/sbin/photurisd/validity.h
@@ -1,3 +1,4 @@
+/* $OpenBSD */
/*
* Copyright 1997-2000 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -27,7 +28,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* $Id */
/*
* validity.h:
* validity for a security association
diff --git a/sbin/startkey/Makefile b/sbin/startkey/Makefile
index 87f7eed127a..0729d72cd05 100644
--- a/sbin/startkey/Makefile
+++ b/sbin/startkey/Makefile
@@ -1,3 +1,5 @@
+# $OpenBSD: Makefile,v 1.2 2001/01/28 22:45:19 niklas Exp $
+
PROG= startkey
SRCS= startkey.c
diff --git a/sbin/startkey/startkey.c b/sbin/startkey/startkey.c
index bbc0a4a6a27..0d97100160a 100644
--- a/sbin/startkey/startkey.c
+++ b/sbin/startkey/startkey.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: startkey.c,v 1.2 2001/01/28 22:45:20 niklas Exp $ */
+
/*
* Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de>
* All rights reserved.
@@ -31,7 +33,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: startkey.c,v 1.1 1998/11/14 23:37:30 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: startkey.c,v 1.2 2001/01/28 22:45:20 niklas Exp $";
#endif
#include <stdio.h>
diff --git a/sbin/sysctl/pathconf.c b/sbin/sysctl/pathconf.c
index 6879372febf..398732d8f9b 100644
--- a/sbin/sysctl/pathconf.c
+++ b/sbin/sysctl/pathconf.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: pathconf.c,v 1.4 2001/01/28 22:45:20 niklas Exp $ */
/* $NetBSD: pathconf.c,v 1.2 1995/09/30 07:12:47 thorpej Exp $ */
/*
@@ -43,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)pathconf.c 8.1 (Berkeley) 6/6/93";
#else
-static char rcsid[] = "$NetBSD: pathconf.c,v 1.2 1995/09/30 07:12:47 thorpej Exp $";
+static char rcsid[] = "$OpenBSD: pathconf.c,v 1.4 2001/01/28 22:45:20 niklas Exp $";
#endif
#endif /* not lint */
diff --git a/sbin/wsconsctl/util.c b/sbin/wsconsctl/util.c
index 7e5cf40a971..b390f70c02b 100644
--- a/sbin/wsconsctl/util.c
+++ b/sbin/wsconsctl/util.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: util.c,v 1.2 2001/01/28 22:45:20 niklas Exp $ */
/* $NetBSD: util.c,v 1.8 2000/03/14 08:11:53 sato Exp $ */
/*-