summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-02-18 19:13:33 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-02-18 19:13:33 +0000
commitd95c09cc83ec07b42feb07c4ff71d23720b37e8e (patch)
tree73b15e75f83356fa59b0d17ffd88409d8f4fc5de
parentc32a5b1a1568258481df6316dc008fc7cd3825fd (diff)
- (bal) Markus' blessing to rename login.[ch] -> sshlogin.[ch] and
pty.[ch] -> sshpty.[ch]
-rw-r--r--ChangeLog6
-rw-r--r--Makefile.in4
-rw-r--r--auth2.c2
-rw-r--r--serverloop.c2
-rw-r--r--session.c4
-rw-r--r--sshd.c2
-rw-r--r--sshlogin.c (renamed from login.c)0
-rw-r--r--sshlogin.h (renamed from login.h)0
-rw-r--r--sshpty.c (renamed from pty.c)2
-rw-r--r--sshpty.h (renamed from pty.h)0
10 files changed, 13 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 032d064b3..be687ffcb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120010219
2 - (bal) Markus' blessing to rename login.[ch] -> sshlogin.[ch] and
3 pty.[ch] -> sshpty.[ch]
4
120010218 520010218
2 - (bal) Patch for fix FCHMOD reference in ftp-client.c by Tim Rice 6 - (bal) Patch for fix FCHMOD reference in ftp-client.c by Tim Rice
3 <tim@multitalents.net> 7 <tim@multitalents.net>
@@ -4038,4 +4042,4 @@
4038 - Wrote replacements for strlcpy and mkdtemp 4042 - Wrote replacements for strlcpy and mkdtemp
4039 - Released 1.0pre1 4043 - Released 1.0pre1
4040 4044
4041$Id: ChangeLog,v 1.800 2001/02/18 12:50:38 djm Exp $ 4045$Id: ChangeLog,v 1.801 2001/02/18 19:13:33 mouring Exp $
diff --git a/Makefile.in b/Makefile.in
index ed48ba101..2215d78af 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.154 2001/02/18 04:23:10 djm Exp $ 1# $Id: Makefile.in,v 1.155 2001/02/18 19:13:33 mouring Exp $
2 2
3prefix=@prefix@ 3prefix=@prefix@
4exec_prefix=@exec_prefix@ 4exec_prefix=@exec_prefix@
@@ -48,7 +48,7 @@ LIBSSH_OBJS=atomicio.o authfd.o authfile.o bufaux.o buffer.o canohost.o channels
48 48
49SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o clientloop.o 49SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o log-client.o readconf.o clientloop.o
50 50
51SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth-chall.o auth2-chall.o auth-rhosts.o auth-options.o auth-krb4.o auth-pam.o auth2-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o auth-sia.o dh.o pty.o log-server.o login.o loginrec.o servconf.o serverloop.o md5crypt.o session.o groupaccess.o 51SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth-chall.o auth2-chall.o auth-rhosts.o auth-options.o auth-krb4.o auth-pam.o auth2-pam.o auth-passwd.o auth-rsa.o auth-rh-rsa.o auth-sia.o dh.o sshpty.o log-server.o sshlogin.o loginrec.o servconf.o serverloop.o md5crypt.o session.o groupaccess.o
52 52
53TROFFMAN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1 53TROFFMAN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1
54CATMAN = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh-keyscan.0 ssh.0 sshd.0 sftp-server.0 sftp.0 54CATMAN = scp.0 ssh-add.0 ssh-agent.0 ssh-keygen.0 ssh-keyscan.0 ssh.0 sshd.0 sftp-server.0 sftp.0
diff --git a/auth2.c b/auth2.c
index cd3886dcc..e90105066 100644
--- a/auth2.c
+++ b/auth2.c
@@ -30,7 +30,7 @@ RCSID("$OpenBSD: auth2.c,v 1.42 2001/02/13 22:49:40 markus Exp $");
30#include "ssh2.h" 30#include "ssh2.h"
31#include "xmalloc.h" 31#include "xmalloc.h"
32#include "rsa.h" 32#include "rsa.h"
33#include "pty.h" 33#include "sshpty.h"
34#include "packet.h" 34#include "packet.h"
35#include "buffer.h" 35#include "buffer.h"
36#include "log.h" 36#include "log.h"
diff --git a/serverloop.c b/serverloop.c
index 613f5181d..79dbe7909 100644
--- a/serverloop.c
+++ b/serverloop.c
@@ -42,7 +42,7 @@ RCSID("$OpenBSD: serverloop.c,v 1.49 2001/02/15 23:19:59 markus Exp $");
42#include "buffer.h" 42#include "buffer.h"
43#include "log.h" 43#include "log.h"
44#include "servconf.h" 44#include "servconf.h"
45#include "pty.h" 45#include "sshpty.h"
46#include "channels.h" 46#include "channels.h"
47#include "compat.h" 47#include "compat.h"
48#include "ssh1.h" 48#include "ssh1.h"
diff --git a/session.c b/session.c
index b84f19ea0..e862c6504 100644
--- a/session.c
+++ b/session.c
@@ -39,7 +39,7 @@ RCSID("$OpenBSD: session.c,v 1.56 2001/02/16 14:03:43 markus Exp $");
39#include "ssh1.h" 39#include "ssh1.h"
40#include "ssh2.h" 40#include "ssh2.h"
41#include "xmalloc.h" 41#include "xmalloc.h"
42#include "pty.h" 42#include "sshpty.h"
43#include "packet.h" 43#include "packet.h"
44#include "buffer.h" 44#include "buffer.h"
45#include "mpaux.h" 45#include "mpaux.h"
@@ -53,7 +53,7 @@ RCSID("$OpenBSD: session.c,v 1.56 2001/02/16 14:03:43 markus Exp $");
53#include "pathnames.h" 53#include "pathnames.h"
54#include "log.h" 54#include "log.h"
55#include "servconf.h" 55#include "servconf.h"
56#include "login.h" 56#include "sshlogin.h"
57#include "serverloop.h" 57#include "serverloop.h"
58#include "canohost.h" 58#include "canohost.h"
59#include "session.h" 59#include "session.h"
diff --git a/sshd.c b/sshd.c
index be046ea65..62e83d2df 100644
--- a/sshd.c
+++ b/sshd.c
@@ -51,7 +51,7 @@ RCSID("$OpenBSD: sshd.c,v 1.167 2001/02/12 23:26:20 markus Exp $");
51#include "ssh2.h" 51#include "ssh2.h"
52#include "xmalloc.h" 52#include "xmalloc.h"
53#include "rsa.h" 53#include "rsa.h"
54#include "pty.h" 54#include "sshpty.h"
55#include "packet.h" 55#include "packet.h"
56#include "mpaux.h" 56#include "mpaux.h"
57#include "log.h" 57#include "log.h"
diff --git a/login.c b/sshlogin.c
index 3e9af193d..3e9af193d 100644
--- a/login.c
+++ b/sshlogin.c
diff --git a/login.h b/sshlogin.h
index 4630eedf4..4630eedf4 100644
--- a/login.h
+++ b/sshlogin.h
diff --git a/pty.c b/sshpty.c
index 4b9370ce5..aca6f027c 100644
--- a/pty.c
+++ b/sshpty.c
@@ -18,7 +18,7 @@ RCSID("$OpenBSD: pty.c,v 1.22 2001/02/08 19:30:52 itojun Exp $");
18# include <util.h> 18# include <util.h>
19#endif /* HAVE_UTIL_H */ 19#endif /* HAVE_UTIL_H */
20 20
21#include "pty.h" 21#include "sshpty.h"
22#include "log.h" 22#include "log.h"
23 23
24/* Pty allocated with _getpty gets broken if we do I_PUSH:es to it. */ 24/* Pty allocated with _getpty gets broken if we do I_PUSH:es to it. */
diff --git a/pty.h b/sshpty.h
index 13d8e6026..13d8e6026 100644
--- a/pty.h
+++ b/sshpty.h