Compare commits
2
Commits
V_5_7_P1
...
V_3_0_2_P1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
68712ee34e | ||
|
|
4499f14321 |
@@ -1,9 +1,9 @@
|
||||
20011126
|
||||
- (tim) [contrib/cygwin/README, openbsd-compat/bsd-cygwin_util.c,
|
||||
openbsd-compat/bsd-cygwin_util.h, openbsd-compat/daemon.c]
|
||||
Allow SSHD to install as service under WIndows 9x/Me
|
||||
[configure.ac] Fix to allow linking against PCRE on Cygwin
|
||||
Patches by Corinna Vinschen <[email protected]>
|
||||
20011202
|
||||
- (djm) Syn with OpenBSD OpenSSH-3.0.2
|
||||
- [email protected]
|
||||
[session.c sshd.8 version.h]
|
||||
Don't allow authorized_keys specified environment variables when
|
||||
UseLogin in active
|
||||
|
||||
20011115
|
||||
- (djm) Fix IPv4 default in ssh-keyscan. Spotted by Dan Astoorian
|
||||
@@ -6919,4 +6919,4 @@
|
||||
- Wrote replacements for strlcpy and mkdtemp
|
||||
- Released 1.0pre1
|
||||
|
||||
$Id: ChangeLog,v 1.1666 2001/11/27 01:19:43 tim Exp $
|
||||
$Id: ChangeLog,v 1.1665.4.1 2001/12/01 23:37:07 djm Exp $
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%define use-stable 1
|
||||
%if %{use-stable}
|
||||
%define version 3.0.1p1
|
||||
%define version 3.0.2p1
|
||||
%define cvs %{nil}
|
||||
%define release 1
|
||||
%else
|
||||
@@ -224,4 +224,4 @@ by Jim Knoble <[email protected]>.
|
||||
%ChangeLog
|
||||
* Mon Jan 01 1998 ...
|
||||
|
||||
$Id: openssh.spec,v 1.25 2001/11/13 13:05:58 djm Exp $
|
||||
$Id: openssh.spec,v 1.25.4.1 2001/12/01 23:37:19 djm Exp $
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Version of OpenSSH
|
||||
%define oversion 3.0.1p1
|
||||
%define oversion 3.0.2p1
|
||||
|
||||
# Version of ssh-askpass
|
||||
%define aversion 1.2.4.1
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Summary: OpenSSH, a free Secure Shell (SSH) protocol implementation
|
||||
Name: openssh
|
||||
Version: 3.0.1p1
|
||||
Version: 3.0.2p1
|
||||
URL: http://www.openssh.com/
|
||||
Release: 1
|
||||
Source0: openssh-%{version}.tar.gz
|
||||
|
||||
@@ -1247,18 +1247,21 @@ do_child(Session *s, const char *command)
|
||||
child_set_env(&env, &envsize, "TZ", getenv("TZ"));
|
||||
|
||||
/* Set custom environment options from RSA authentication. */
|
||||
while (custom_environment) {
|
||||
struct envstring *ce = custom_environment;
|
||||
char *s = ce->s;
|
||||
int i;
|
||||
for (i = 0; s[i] != '=' && s[i]; i++);
|
||||
if (s[i] == '=') {
|
||||
s[i] = 0;
|
||||
child_set_env(&env, &envsize, s, s + i + 1);
|
||||
if (!options.use_login) {
|
||||
while (custom_environment) {
|
||||
struct envstring *ce = custom_environment;
|
||||
char *s = ce->s;
|
||||
int i;
|
||||
for (i = 0; s[i] != '=' && s[i]; i++)
|
||||
;
|
||||
if (s[i] == '=') {
|
||||
s[i] = 0;
|
||||
child_set_env(&env, &envsize, s, s + i + 1);
|
||||
}
|
||||
custom_environment = ce->next;
|
||||
xfree(ce->s);
|
||||
xfree(ce);
|
||||
}
|
||||
custom_environment = ce->next;
|
||||
xfree(ce->s);
|
||||
xfree(ce);
|
||||
}
|
||||
|
||||
snprintf(buf, sizeof buf, "%.50s %d %d",
|
||||
|
||||
@@ -1014,6 +1014,9 @@ logging in using this key.
|
||||
Environment variables set this way
|
||||
override other default environment values.
|
||||
Multiple options of this type are permitted.
|
||||
This option is automatically disabled if
|
||||
.Cm UseLogin
|
||||
is enabled.
|
||||
.It Cm no-port-forwarding
|
||||
Forbids TCP/IP forwarding when this key is used for authentication.
|
||||
Any port forward requests by the client will return an error.
|
||||
|
||||
Reference in New Issue
Block a user