diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2000-06-22 23:55:01 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2000-06-22 23:55:01 +0000 |
commit | 772addc9855aa7d0db82bc57752bad6209a01829 (patch) | |
tree | a793f71502bd9873b239e565b15e47f0d9109ce0 | |
parent | a72626da0fca1e819263b5b089b5847c1d7f13e5 (diff) |
Missing CVS idents; ok markus
-rw-r--r-- | usr.bin/ssh/auth-krb4.c | 2 | ||||
-rw-r--r-- | usr.bin/ssh/key.c | 2 | ||||
-rw-r--r-- | usr.bin/ssh/radix.c | 2 | ||||
-rw-r--r-- | usr.bin/ssh/uuencode.c | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/usr.bin/ssh/auth-krb4.c b/usr.bin/ssh/auth-krb4.c index a26842713aa..e32089b7437 100644 --- a/usr.bin/ssh/auth-krb4.c +++ b/usr.bin/ssh/auth-krb4.c @@ -9,6 +9,8 @@ #include "ssh.h" #include "servconf.h" +RCSID("$OpenBSD: auth-krb4.c,v 1.15 2000/06/22 23:54:59 djm Exp $"); + #ifdef KRB4 char *ticket = NULL; diff --git a/usr.bin/ssh/key.c b/usr.bin/ssh/key.c index be38a88f5e6..764f1f227fb 100644 --- a/usr.bin/ssh/key.c +++ b/usr.bin/ssh/key.c @@ -41,6 +41,8 @@ #include "dsa.h" #include "uuencode.h" +RCSID("$OpenBSD: key.c,v 1.9 2000/06/22 23:55:00 djm Exp $"); + #define SSH_DSS "ssh-dss" Key * diff --git a/usr.bin/ssh/radix.c b/usr.bin/ssh/radix.c index 03377334415..7e668ea6566 100644 --- a/usr.bin/ssh/radix.c +++ b/usr.bin/ssh/radix.c @@ -7,6 +7,8 @@ #include "includes.h" #include "uuencode.h" +RCSID("$OpenBSD: radix.c,v 1.12 2000/06/22 23:55:00 djm Exp $"); + #ifdef AFS #include <krb.h> diff --git a/usr.bin/ssh/uuencode.c b/usr.bin/ssh/uuencode.c index fc84d5a5830..25fec18acfe 100644 --- a/usr.bin/ssh/uuencode.c +++ b/usr.bin/ssh/uuencode.c @@ -6,6 +6,8 @@ #include <resolv.h> +RCSID("$OpenBSD: uuencode.c,v 1.6 2000/06/22 23:55:00 djm Exp $"); + int uuencode(unsigned char *src, unsigned int srclength, char *target, size_t targsize) |