summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-07-04 03:32:30 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-07-04 03:32:30 +0000
commit44697233257d80aa46402e7a6207ef8d6fe359e4 (patch)
tree56adaa4204a91c3d4817d13b60c53a28e5d79e2c
parent5cc6e92251b33578a7dbb29581e789d9e7182580 (diff)
- markus@cvs.openbsd.org 2001/06/25 08:25:41
[channels.c channels.h cipher.c clientloop.c compat.c compat.h hostfile.c kex.c kex.h key.c key.h nchan.c packet.c serverloop.c session.c session.h sftp-server.c ssh-add.c ssh-agent.c uuencode.h] update copyright for 2001
-rw-r--r--ChangeLog10
-rw-r--r--channels.c5
-rw-r--r--channels.h4
-rw-r--r--cipher.c4
-rw-r--r--clientloop.c4
-rw-r--r--compat.c4
-rw-r--r--compat.h4
-rw-r--r--hostfile.c4
-rw-r--r--kex.c4
-rw-r--r--kex.h4
-rw-r--r--key.c4
-rw-r--r--key.h4
-rw-r--r--nchan.c4
-rw-r--r--packet.c4
-rw-r--r--serverloop.c4
-rw-r--r--session.c4
-rw-r--r--session.h4
-rw-r--r--sftp-server.c4
-rw-r--r--ssh-add.c4
-rw-r--r--ssh-agent.c7
-rw-r--r--uuencode.h4
21 files changed, 50 insertions, 44 deletions
diff --git a/ChangeLog b/ChangeLog
index 2ad013f0d..d4999db48 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
120010704
2 - OpenBSD CVS Sync
3 - markus@cvs.openbsd.org 2001/06/25 08:25:41
4 [channels.c channels.h cipher.c clientloop.c compat.c compat.h
5 hostfile.c kex.c kex.h key.c key.h nchan.c packet.c serverloop.c
6 session.c session.h sftp-server.c ssh-add.c ssh-agent.c uuencode.h]
7 update copyright for 2001
8
120010629 920010629
2 - (bal) Removed net_aton() since we don't use it any more 10 - (bal) Removed net_aton() since we don't use it any more
3 - (bal) Fixed _DISABLE_VPOSIX in readpassphrase.c. 11 - (bal) Fixed _DISABLE_VPOSIX in readpassphrase.c.
@@ -5824,4 +5832,4 @@
5824 - Wrote replacements for strlcpy and mkdtemp 5832 - Wrote replacements for strlcpy and mkdtemp
5825 - Released 1.0pre1 5833 - Released 1.0pre1
5826 5834
5827$Id: ChangeLog,v 1.1344 2001/06/29 19:51:48 stevesk Exp $ 5835$Id: ChangeLog,v 1.1345 2001/07/04 03:32:30 mouring Exp $
diff --git a/channels.c b/channels.c
index ce4c5952d..2721ec6bc 100644
--- a/channels.c
+++ b/channels.c
@@ -12,9 +12,8 @@
12 * incompatible with the protocol description in the RFC file, it must be 12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell". 13 * called by a name other than "ssh" or "Secure Shell".
14 * 14 *
15 *
16 * SSH2 support added by Markus Friedl. 15 * SSH2 support added by Markus Friedl.
17 * Copyright (c) 1999,2000 Markus Friedl. All rights reserved. 16 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
18 * Copyright (c) 1999 Dug Song. All rights reserved. 17 * Copyright (c) 1999 Dug Song. All rights reserved.
19 * Copyright (c) 1999 Theo de Raadt. All rights reserved. 18 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
20 * 19 *
@@ -40,7 +39,7 @@
40 */ 39 */
41 40
42#include "includes.h" 41#include "includes.h"
43RCSID("$OpenBSD: channels.c,v 1.127 2001/06/23 15:12:17 itojun Exp $"); 42RCSID("$OpenBSD: channels.c,v 1.128 2001/06/25 08:25:35 markus Exp $");
44 43
45#include "ssh.h" 44#include "ssh.h"
46#include "ssh1.h" 45#include "ssh1.h"
diff --git a/channels.h b/channels.h
index 419b63623..0ce8372bd 100644
--- a/channels.h
+++ b/channels.h
@@ -10,7 +10,7 @@
10 * called by a name other than "ssh" or "Secure Shell". 10 * called by a name other than "ssh" or "Secure Shell".
11 */ 11 */
12/* 12/*
13 * Copyright (c) 2000 Markus Friedl. All rights reserved. 13 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
14 * 14 *
15 * Redistribution and use in source and binary forms, with or without 15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions 16 * modification, are permitted provided that the following conditions
@@ -32,7 +32,7 @@
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 */ 34 */
35/* RCSID("$OpenBSD: channels.h,v 1.39 2001/06/20 13:56:39 markus Exp $"); */ 35/* RCSID("$OpenBSD: channels.h,v 1.40 2001/06/25 08:25:36 markus Exp $"); */
36 36
37#ifndef CHANNEL_H 37#ifndef CHANNEL_H
38#define CHANNEL_H 38#define CHANNEL_H
diff --git a/cipher.c b/cipher.c
index a7aacf284..5f63cd4b2 100644
--- a/cipher.c
+++ b/cipher.c
@@ -11,7 +11,7 @@
11 * 11 *
12 * 12 *
13 * Copyright (c) 1999 Niels Provos. All rights reserved. 13 * Copyright (c) 1999 Niels Provos. All rights reserved.
14 * Copyright (c) 1999,2000 Markus Friedl. All rights reserved. 14 * Copyright (c) 1999, 2000 Markus Friedl. All rights reserved.
15 * 15 *
16 * Redistribution and use in source and binary forms, with or without 16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions 17 * modification, are permitted provided that the following conditions
@@ -35,7 +35,7 @@
35 */ 35 */
36 36
37#include "includes.h" 37#include "includes.h"
38RCSID("$OpenBSD: cipher.c,v 1.45 2001/06/23 15:12:18 itojun Exp $"); 38RCSID("$OpenBSD: cipher.c,v 1.46 2001/06/25 08:25:36 markus Exp $");
39 39
40#include "xmalloc.h" 40#include "xmalloc.h"
41#include "log.h" 41#include "log.h"
diff --git a/clientloop.c b/clientloop.c
index c96aea56f..05bcc3add 100644
--- a/clientloop.c
+++ b/clientloop.c
@@ -35,7 +35,7 @@
35 * 35 *
36 * 36 *
37 * SSH2 support added by Markus Friedl. 37 * SSH2 support added by Markus Friedl.
38 * Copyright (c) 1999,2000 Markus Friedl. All rights reserved. 38 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
39 * 39 *
40 * Redistribution and use in source and binary forms, with or without 40 * Redistribution and use in source and binary forms, with or without
41 * modification, are permitted provided that the following conditions 41 * modification, are permitted provided that the following conditions
@@ -59,7 +59,7 @@
59 */ 59 */
60 60
61#include "includes.h" 61#include "includes.h"
62RCSID("$OpenBSD: clientloop.c,v 1.77 2001/06/23 15:12:18 itojun Exp $"); 62RCSID("$OpenBSD: clientloop.c,v 1.78 2001/06/25 08:25:36 markus Exp $");
63 63
64#include "ssh.h" 64#include "ssh.h"
65#include "ssh1.h" 65#include "ssh1.h"
diff --git a/compat.c b/compat.c
index cdfd2cf6d..77bba28a2 100644
--- a/compat.c
+++ b/compat.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 1999,2000 Markus Friedl. All rights reserved. 2 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: compat.c,v 1.50 2001/04/30 16:02:49 markus Exp $"); 26RCSID("$OpenBSD: compat.c,v 1.51 2001/06/25 08:25:37 markus Exp $");
27 27
28#ifdef HAVE_LIBPCRE 28#ifdef HAVE_LIBPCRE
29# include <pcreposix.h> 29# include <pcreposix.h>
diff --git a/compat.h b/compat.h
index 0ccc1ed37..33eb7c1e8 100644
--- a/compat.h
+++ b/compat.h
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 1999 Markus Friedl. All rights reserved. 2 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
@@ -21,7 +21,7 @@
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */ 23 */
24/* RCSID("$OpenBSD: compat.h,v 1.25 2001/04/30 15:50:46 markus Exp $"); */ 24/* RCSID("$OpenBSD: compat.h,v 1.26 2001/06/25 08:25:37 markus Exp $"); */
25 25
26#ifndef COMPAT_H 26#ifndef COMPAT_H
27#define COMPAT_H 27#define COMPAT_H
diff --git a/hostfile.c b/hostfile.c
index 39a1a8313..eeed920fa 100644
--- a/hostfile.c
+++ b/hostfile.c
@@ -11,7 +11,7 @@
11 * called by a name other than "ssh" or "Secure Shell". 11 * called by a name other than "ssh" or "Secure Shell".
12 * 12 *
13 * 13 *
14 * Copyright (c) 1999,2000 Markus Friedl. All rights reserved. 14 * Copyright (c) 1999, 2000 Markus Friedl. All rights reserved.
15 * Copyright (c) 1999 Niels Provos. All rights reserved. 15 * Copyright (c) 1999 Niels Provos. All rights reserved.
16 * 16 *
17 * Redistribution and use in source and binary forms, with or without 17 * Redistribution and use in source and binary forms, with or without
@@ -36,7 +36,7 @@
36 */ 36 */
37 37
38#include "includes.h" 38#include "includes.h"
39RCSID("$OpenBSD: hostfile.c,v 1.27 2001/06/23 15:12:18 itojun Exp $"); 39RCSID("$OpenBSD: hostfile.c,v 1.28 2001/06/25 08:25:37 markus Exp $");
40 40
41#include "packet.h" 41#include "packet.h"
42#include "match.h" 42#include "match.h"
diff --git a/kex.c b/kex.c
index 25b3b8f8a..1a412ce0f 100644
--- a/kex.c
+++ b/kex.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2000 Markus Friedl. All rights reserved. 2 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: kex.c,v 1.35 2001/06/23 15:12:18 itojun Exp $"); 26RCSID("$OpenBSD: kex.c,v 1.36 2001/06/25 08:25:37 markus Exp $");
27 27
28#include <openssl/crypto.h> 28#include <openssl/crypto.h>
29 29
diff --git a/kex.h b/kex.h
index eca36b36a..ac7ad33f7 100644
--- a/kex.h
+++ b/kex.h
@@ -1,7 +1,7 @@
1/* $OpenBSD: kex.h,v 1.23 2001/06/23 02:34:28 markus Exp $ */ 1/* $OpenBSD: kex.h,v 1.24 2001/06/25 08:25:37 markus Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
diff --git a/key.c b/key.c
index cbe08a4c1..2000c2755 100644
--- a/key.c
+++ b/key.c
@@ -9,7 +9,7 @@
9 * called by a name other than "ssh" or "Secure Shell". 9 * called by a name other than "ssh" or "Secure Shell".
10 * 10 *
11 * 11 *
12 * Copyright (c) 2000 Markus Friedl. All rights reserved. 12 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
13 * 13 *
14 * Redistribution and use in source and binary forms, with or without 14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions 15 * modification, are permitted provided that the following conditions
@@ -32,7 +32,7 @@
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 */ 33 */
34#include "includes.h" 34#include "includes.h"
35RCSID("$OpenBSD: key.c,v 1.27 2001/06/23 15:12:19 itojun Exp $"); 35RCSID("$OpenBSD: key.c,v 1.28 2001/06/25 08:25:37 markus Exp $");
36 36
37#include <openssl/evp.h> 37#include <openssl/evp.h>
38 38
diff --git a/key.h b/key.h
index cee31c30a..7f4e5f017 100644
--- a/key.h
+++ b/key.h
@@ -1,7 +1,7 @@
1/* $OpenBSD: key.h,v 1.12 2001/04/17 10:53:24 markus Exp $ */ 1/* $OpenBSD: key.h,v 1.13 2001/06/25 08:25:38 markus Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
diff --git a/nchan.c b/nchan.c
index 8916c13f4..8e1be2d36 100644
--- a/nchan.c
+++ b/nchan.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 1999 Markus Friedl. All rights reserved. 2 * Copyright (c) 1999, 2000, 2001 Markus Friedl. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: nchan.c,v 1.29 2001/06/23 15:12:19 itojun Exp $"); 26RCSID("$OpenBSD: nchan.c,v 1.30 2001/06/25 08:25:38 markus Exp $");
27 27
28#include "ssh1.h" 28#include "ssh1.h"
29#include "ssh2.h" 29#include "ssh2.h"
diff --git a/packet.c b/packet.c
index 5365abaec..9aa686aa7 100644
--- a/packet.c
+++ b/packet.c
@@ -13,7 +13,7 @@
13 * 13 *
14 * 14 *
15 * SSH2 packet format added by Markus Friedl. 15 * SSH2 packet format added by Markus Friedl.
16 * Copyright (c) 2000 Markus Friedl. All rights reserved. 16 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
17 * 17 *
18 * Redistribution and use in source and binary forms, with or without 18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions 19 * modification, are permitted provided that the following conditions
@@ -37,7 +37,7 @@
37 */ 37 */
38 38
39#include "includes.h" 39#include "includes.h"
40RCSID("$OpenBSD: packet.c,v 1.68 2001/06/23 15:12:19 itojun Exp $"); 40RCSID("$OpenBSD: packet.c,v 1.69 2001/06/25 08:25:38 markus Exp $");
41 41
42#include "xmalloc.h" 42#include "xmalloc.h"
43#include "buffer.h" 43#include "buffer.h"
diff --git a/serverloop.c b/serverloop.c
index 1ffa4dbfb..2eb8603d1 100644
--- a/serverloop.c
+++ b/serverloop.c
@@ -11,7 +11,7 @@
11 * called by a name other than "ssh" or "Secure Shell". 11 * called by a name other than "ssh" or "Secure Shell".
12 * 12 *
13 * SSH2 support by Markus Friedl. 13 * SSH2 support by Markus Friedl.
14 * Copyright (c) 2000 Markus Friedl. All rights reserved. 14 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
15 * 15 *
16 * Redistribution and use in source and binary forms, with or without 16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions 17 * modification, are permitted provided that the following conditions
@@ -35,7 +35,7 @@
35 */ 35 */
36 36
37#include "includes.h" 37#include "includes.h"
38RCSID("$OpenBSD: serverloop.c,v 1.70 2001/06/23 15:12:19 itojun Exp $"); 38RCSID("$OpenBSD: serverloop.c,v 1.71 2001/06/25 08:25:39 markus Exp $");
39 39
40#include "xmalloc.h" 40#include "xmalloc.h"
41#include "packet.h" 41#include "packet.h"
diff --git a/session.c b/session.c
index e50fd68bc..7d0e0723c 100644
--- a/session.c
+++ b/session.c
@@ -9,7 +9,7 @@
9 * called by a name other than "ssh" or "Secure Shell". 9 * called by a name other than "ssh" or "Secure Shell".
10 * 10 *
11 * SSH2 support by Markus Friedl. 11 * SSH2 support by Markus Friedl.
12 * Copyright (c) 2000 Markus Friedl. All rights reserved. 12 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
13 * 13 *
14 * Redistribution and use in source and binary forms, with or without 14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions 15 * modification, are permitted provided that the following conditions
@@ -33,7 +33,7 @@
33 */ 33 */
34 34
35#include "includes.h" 35#include "includes.h"
36RCSID("$OpenBSD: session.c,v 1.94 2001/06/23 15:12:20 itojun Exp $"); 36RCSID("$OpenBSD: session.c,v 1.95 2001/06/25 08:25:39 markus Exp $");
37 37
38#include "ssh.h" 38#include "ssh.h"
39#include "ssh1.h" 39#include "ssh1.h"
diff --git a/session.h b/session.h
index 842e9412a..bda1e50b5 100644
--- a/session.h
+++ b/session.h
@@ -1,7 +1,7 @@
1/* $OpenBSD: session.h,v 1.6 2001/03/21 11:43:45 markus Exp $ */ 1/* $OpenBSD: session.h,v 1.7 2001/06/25 08:25:39 markus Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
diff --git a/sftp-server.c b/sftp-server.c
index e6353bceb..5f1b37b01 100644
--- a/sftp-server.c
+++ b/sftp-server.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2000 Markus Friedl. All rights reserved. 2 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
@@ -22,7 +22,7 @@
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */ 23 */
24#include "includes.h" 24#include "includes.h"
25RCSID("$OpenBSD: sftp-server.c,v 1.28 2001/06/23 15:12:20 itojun Exp $"); 25RCSID("$OpenBSD: sftp-server.c,v 1.29 2001/06/25 08:25:40 markus Exp $");
26 26
27#include "buffer.h" 27#include "buffer.h"
28#include "bufaux.h" 28#include "bufaux.h"
diff --git a/ssh-add.c b/ssh-add.c
index 84a8c20f9..d6a55446d 100644
--- a/ssh-add.c
+++ b/ssh-add.c
@@ -11,7 +11,7 @@
11 * called by a name other than "ssh" or "Secure Shell". 11 * called by a name other than "ssh" or "Secure Shell".
12 * 12 *
13 * SSH2 implementation, 13 * SSH2 implementation,
14 * Copyright (c) 2000 Markus Friedl. All rights reserved. 14 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
15 * 15 *
16 * Redistribution and use in source and binary forms, with or without 16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions 17 * modification, are permitted provided that the following conditions
@@ -35,7 +35,7 @@
35 */ 35 */
36 36
37#include "includes.h" 37#include "includes.h"
38RCSID("$OpenBSD: ssh-add.c,v 1.40 2001/06/24 05:35:33 markus Exp $"); 38RCSID("$OpenBSD: ssh-add.c,v 1.41 2001/06/25 08:25:40 markus Exp $");
39 39
40#include <openssl/evp.h> 40#include <openssl/evp.h>
41 41
diff --git a/ssh-agent.c b/ssh-agent.c
index 6d94c6c29..54b375fce 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-agent.c,v 1.55 2001/06/23 15:12:20 itojun Exp $ */ 1/* $OpenBSD: ssh-agent.c,v 1.56 2001/06/25 08:25:40 markus Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -12,8 +12,7 @@
12 * incompatible with the protocol description in the RFC file, it must be 12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell". 13 * called by a name other than "ssh" or "Secure Shell".
14 * 14 *
15 * SSH2 implementation, 15 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
16 * Copyright (c) 2000 Markus Friedl. All rights reserved.
17 * 16 *
18 * Redistribution and use in source and binary forms, with or without 17 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions 18 * modification, are permitted provided that the following conditions
@@ -37,7 +36,7 @@
37 */ 36 */
38 37
39#include "includes.h" 38#include "includes.h"
40RCSID("$OpenBSD: ssh-agent.c,v 1.55 2001/06/23 15:12:20 itojun Exp $"); 39RCSID("$OpenBSD: ssh-agent.c,v 1.56 2001/06/25 08:25:40 markus Exp $");
41 40
42#include <openssl/evp.h> 41#include <openssl/evp.h>
43#include <openssl/md5.h> 42#include <openssl/md5.h>
diff --git a/uuencode.h b/uuencode.h
index 42f83c2c0..1a2d63f52 100644
--- a/uuencode.h
+++ b/uuencode.h
@@ -1,7 +1,7 @@
1/* $OpenBSD: uuencode.h,v 1.5 2001/01/29 01:58:19 niklas Exp $ */ 1/* $OpenBSD: uuencode.h,v 1.6 2001/06/25 08:25:41 markus Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1999 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions