summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@cvs.openbsd.org>2018-02-26 03:56:45 +0000
committerDarren Tucker <dtucker@cvs.openbsd.org>2018-02-26 03:56:45 +0000
commit0530b7cfb3c00ceb177840236f39b647f09d89f9 (patch)
treee954da5db2ad268828a1f2b298f7f1ab03620d8d /usr.bin
parentc8b501988bf01f74af12bcf6b1ea3daa84f3e214 (diff)
Add $OpenBSD$ markers to xmss files to help keep synced with portable.
ok djm@.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/xmss_commons.c3
-rw-r--r--usr.bin/ssh/xmss_commons.h1
-rw-r--r--usr.bin/ssh/xmss_fast.c1
-rw-r--r--usr.bin/ssh/xmss_fast.h1
-rw-r--r--usr.bin/ssh/xmss_hash.c1
-rw-r--r--usr.bin/ssh/xmss_hash.h1
-rw-r--r--usr.bin/ssh/xmss_hash_address.c1
-rw-r--r--usr.bin/ssh/xmss_hash_address.h1
-rw-r--r--usr.bin/ssh/xmss_wots.c1
-rw-r--r--usr.bin/ssh/xmss_wots.h1
10 files changed, 11 insertions, 1 deletions
diff --git a/usr.bin/ssh/xmss_commons.c b/usr.bin/ssh/xmss_commons.c
index 51171af91b2..5a0fce4f201 100644
--- a/usr.bin/ssh/xmss_commons.c
+++ b/usr.bin/ssh/xmss_commons.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: xmss_commons.c,v 1.2 2018/02/26 03:56:44 dtucker Exp $ */
/*
xmss_commons.c 20160722
Andreas Hülsing
@@ -24,4 +25,4 @@ void hexdump(const unsigned char *a, size_t len)
size_t i;
for (i = 0; i < len; i++)
printf("%02x", a[i]);
-} \ No newline at end of file
+}
diff --git a/usr.bin/ssh/xmss_commons.h b/usr.bin/ssh/xmss_commons.h
index eebf99f8d05..b39e7dbeb40 100644
--- a/usr.bin/ssh/xmss_commons.h
+++ b/usr.bin/ssh/xmss_commons.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: xmss_commons.h,v 1.3 2018/02/26 03:56:44 dtucker Exp $ */
/*
xmss_commons.h 20160722
Andreas Hülsing
diff --git a/usr.bin/ssh/xmss_fast.c b/usr.bin/ssh/xmss_fast.c
index 7ddc92f83d3..394d37d170d 100644
--- a/usr.bin/ssh/xmss_fast.c
+++ b/usr.bin/ssh/xmss_fast.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: xmss_fast.c,v 1.2 2018/02/26 03:56:44 dtucker Exp $ */
/*
xmss_fast.c version 20160722
Andreas Hülsing
diff --git a/usr.bin/ssh/xmss_fast.h b/usr.bin/ssh/xmss_fast.h
index 657cd27f47c..4fd1f335f16 100644
--- a/usr.bin/ssh/xmss_fast.h
+++ b/usr.bin/ssh/xmss_fast.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: xmss_fast.h,v 1.2 2018/02/26 03:56:44 dtucker Exp $ */
/*
xmss_fast.h version 20160722
Andreas Hülsing
diff --git a/usr.bin/ssh/xmss_hash.c b/usr.bin/ssh/xmss_hash.c
index 963b584b917..a5cef884c90 100644
--- a/usr.bin/ssh/xmss_hash.c
+++ b/usr.bin/ssh/xmss_hash.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: xmss_hash.c,v 1.2 2018/02/26 03:56:44 dtucker Exp $ */
/*
hash.c version 20160722
Andreas Hülsing
diff --git a/usr.bin/ssh/xmss_hash.h b/usr.bin/ssh/xmss_hash.h
index 2fed73009f1..cce9e34d462 100644
--- a/usr.bin/ssh/xmss_hash.h
+++ b/usr.bin/ssh/xmss_hash.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: xmss_hash.h,v 1.2 2018/02/26 03:56:44 dtucker Exp $ */
/*
hash.h version 20160722
Andreas Hülsing
diff --git a/usr.bin/ssh/xmss_hash_address.c b/usr.bin/ssh/xmss_hash_address.c
index 223c6f8ab4e..80580b16ddc 100644
--- a/usr.bin/ssh/xmss_hash_address.c
+++ b/usr.bin/ssh/xmss_hash_address.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: xmss_hash_address.c,v 1.2 2018/02/26 03:56:44 dtucker Exp $ */
/*
hash_address.c version 20160722
Andreas Hülsing
diff --git a/usr.bin/ssh/xmss_hash_address.h b/usr.bin/ssh/xmss_hash_address.h
index 73cbfd61cf0..59af3ac641e 100644
--- a/usr.bin/ssh/xmss_hash_address.h
+++ b/usr.bin/ssh/xmss_hash_address.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: xmss_hash_address.h,v 1.2 2018/02/26 03:56:44 dtucker Exp $ */
/*
hash_address.h version 20160722
Andreas Hülsing
diff --git a/usr.bin/ssh/xmss_wots.c b/usr.bin/ssh/xmss_wots.c
index fcd03340532..1d6e88c4922 100644
--- a/usr.bin/ssh/xmss_wots.c
+++ b/usr.bin/ssh/xmss_wots.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: xmss_wots.c,v 1.2 2018/02/26 03:56:44 dtucker Exp $ */
/*
wots.c version 20160722
Andreas Hülsing
diff --git a/usr.bin/ssh/xmss_wots.h b/usr.bin/ssh/xmss_wots.h
index 49543108776..dd63ca94e2f 100644
--- a/usr.bin/ssh/xmss_wots.h
+++ b/usr.bin/ssh/xmss_wots.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: xmss_wots.h,v 1.2 2018/02/26 03:56:44 dtucker Exp $ */
/*
wots.h version 20160722
Andreas Hülsing