Displaying 20 results from an estimated 5000 matches similar to: "[PATCH]: Fix typo in contrib/cygwin/README"
2002 Jun 13
1
[2.PATCH]: Eliminate typo in bsd-misc.*
Hi,
the following patch eliminates a typo in bsd-misc.* which disallows
building for Cygwin.
Corinna
Index: openbsd-compat/bsd-misc.c
===================================================================
RCS file: /cvs/openssh_cvs/openbsd-compat/bsd-misc.c,v
retrieving revision 1.7
diff -u -p -r1.7 bsd-misc.c
--- openbsd-compat/bsd-misc.c 12 Jun 2002 16:57:15 -0000 1.7
+++
2002 Jul 07
1
[PATCH]: Some fixes in contrib/cygwin/ssh-host-config
Hi,
the attached patch changes the ssh-host-config script in the following
way:
- Actually exit if ssh processes are still running. The "exit 1"
is commented out for testing purposes and I accidentally left it
this way when sending the patch to this list :-(
- Create the Windows NT account "sshd" so that it's deactivated.
So even if the administrator(s) for some
2001 Jul 11
0
[PATCH]: Cygwin: Changes to cygwin contrib area
Hi,
the following patch changes two files in the contrib/cygwin subdir:
It changes the Cygwin specific README file which adds some hints
related to the new feature to switch user context without password
(which means using public key and/or rhosts authentication). Some
old stuff is erased.
The changes to ssh-host-config are intended to allow an easier
startup for users which are new to Cygwin
2001 Mar 14
1
[PATCH]: contrib/cygwin/README
Hi,
I have a small patch here which changes the Cygwin README file so
that the following fact is mentioned.
OpenSSH never uses $HOME to search for user config files but the
value in the pw_dir field in /etc/passwd.
This might be of minor interest for generic U*X folks but that's
an important fact for Cygwin users. When /etc/passwd is automatically
created under WinNT/2K it uses the values
2003 Sep 16
0
[PATCH] contrib/cygwin: ssh-host-config and README file update
Hi,
could anybody with check in privileges apply the following patch to the
contrib cygwin directory? It only updates ssh-host-config to create the
*_config files matching the latest versions in the top level dir and it
updates a version number in README.
Thanks in advance,
Corinna
Index: contrib/cygwin/README
===================================================================
RCS file:
2004 Jan 23
0
[PATCH] contrib/cygwin/README
Hi,
the latest update to contrib/cygwin/README was missing the documentaion
of the new ssh-host-config options. The below patch fixes that.
Please apply. Thanks,
Corinna
Index: contrib/cygwin/README
===================================================================
RCS file: /cvs/openssh_cvs/contrib/cygwin/README,v
retrieving revision 1.13
diff -p -u -r1.13 README
--- contrib/cygwin/README
2001 Mar 07
4
[PATCH]: contrib/cygwin/ssh-host-config
Hi,
below is a patch to contrib/cygwin/ssh-host-config and the corresponding
README in the same dir. It adds a `--port' option to the config script
to allow setting another port than 22 for sshd.
Additionally the script used to add `sshd 22/tcp' to the services file
while the IANA proposes `ssh 22/tcp' and `ssh 22/udp' as services entries.
The new version removes old `sshd'
2003 Oct 30
0
[PATCH] contrib/cygwin/ssh-host-config: Fix a CRLF/LF issue
Hi,
could somebody apply the below patch to contrib/cygwin/ssh-host-config?
The patch solves a problem with the way, the Windows pendant of the
/etc/services file is used.
This file has (obviously) CRLF line endings. The ssh-host-config file
tries to accomodate that when adding the ssh service entries but I never
reviewed this functionality in the light of some major changes in the
Cygwin DLL.
2003 Jan 09
1
[PATCH] Allow multiple accounts on Windows 9x/Me
Hi,
the following patch by Pierre A. Humblet <Pierre.Humblet at ieee.org>
allows to use more than one uid on 9x/Me boxes which is currently
blocked due to the behaviour of Cygwin's security code. After this
patch is applied to sshd, we can safely change the affected code in
Cygwin.
Thanks,
Corinna
Index: session.c
===================================================================
2002 Jul 04
1
[PATCH]: Remove HAVE_CYGWIN in favor of NO_IPPORT_RESERVED_CONCEPT
Hi,
I've sent that patch once already but it seems more or less forgotten
in the tumultuous days of the latest vulnerability.
It adds a new define NO_IPPORT_RESERVED_CONCEPT which can be defined
on platforms not supporting the concept of "privileged" ports only
accessible by privileged users but which allow everyone to use these
ports.
This patch removes some Cygwin dependencies
2001 Feb 28
2
[PATCH]: auth.c (pwcopy): Copy pw_gecos field when build for Cygwin
Hi,
the attached patch is very important for Cygwin. I don't know
how I could have missed that for months now :-( I hope this
can be included in 2.5.1p2.
The pw_gecos field in Cygwin's /etc/passwd contains Windows
specific authentication informations which let NT domain
users logon to a machine without the need to inform the
logon server (sshd in our case) about the name of the NT
2001 May 03
1
[PATCH]: Addition to Cygwin README
Hi,
just a short addition to the Cygwin README. It would be nice to
include that into the repository.
Thanks,
Corinna
Index: README
===================================================================
RCS file: /cvs/openssh_cvs/contrib/cygwin/README,v
retrieving revision 1.4
diff -u -p -r1.4 README
--- README 2001/03/14 21:30:18 1.4
+++ README 2001/05/03 12:13:45
@@ -57,6 +57,13 @@
2002 Jul 10
1
[PATCH] Care for permissions of /var/empty in contrib/cygwin/ssh-host-config
Hi,
the following patch explicitely sets the permissions on /var/empty
to 755 when running the ssh-host-config script on Cygwin. I never
thought it would be necessary but apparently there are actually
users working with a umask of 0. Sigh.
Corinna
Index: contrib/cygwin/ssh-host-config
===================================================================
RCS file:
2002 Jul 05
1
[PATCH]: Fix a bug in contrib/cygwin/ssh-host-config
Hi,
the following patch fixes a wrong path in a chown command. The
additional leading slash collides with accessing SMB shares using
double slashes as in "//server/share" on Windows systems.
Corinna
Index: contrib/cygwin/ssh-host-config
===================================================================
RCS file: /cvs/openssh_cvs/contrib/cygwin/ssh-host-config,v
retrieving revision
2002 Jul 03
1
[PATCH]: Change Cygwin contrib files to better support PrivSep
Hi,
the following patch patches the files in contrib/cygwin. The changes
are necessary to allow a better support of privilege separation.
On NT machines the script asks now if it should create a user called
"sshd" and all that. Additionally it creates the /etc/ssh_config
and /etc/sshd_config files follows the latest versions.
Would you mind to apply this to the official OpenSSH
2002 Apr 29
1
[PATCH]: Cygwin README still mentiones regex libs
Hi,
the Cygwin README file still contains the hint, that the regex lib
is needed to compile OpenSSH. The following patch removes that
from the README. Could somebody please apply it?
Thanks,
Corinna
Index: contrib/cygwin/README
===================================================================
RCS file: /cvs/openssh_cvs/contrib/cygwin/README,v
retrieving revision 1.8
diff -u -p -r1.8 README
2001 Nov 11
1
[PATCH]: Change contrib/cygwin/ssh-host-config
Hi,
the following patch to contrib/cygwin/ssh-host-config creates
/etc/ssh_config and /etc/sshd_config according to the current
default config files. Could somebody please check it in?
Corinna
Index: contrib/cygwin/ssh-host-config
===================================================================
RCS file: /cvs/openssh_cvs/contrib/cygwin/ssh-host-config,v
retrieving revision 1.3
diff -u -p
2004 Jul 09
1
[PATCH] Tiny correction in Cygwin README
Hi,
could somebody apply the below patch? It just mentiones that the
minires-devel package is needed to build OpenSSH on Cygwin.
Thanks,
Corinna
Index: contrib/cygwin/README
===================================================================
RCS file: /cvs/openssh_cvs/contrib/cygwin/README,v
retrieving revision 1.14
diff -p -u -r1.14 README
--- contrib/cygwin/README 23 Jan 2004 10:35:44
2006 Mar 03
0
[PATCH] contrib/cygwin/ssh-host-config: Handle lastlog with more care
Hi,
below is a patch to Cygwin's ssh-host-config file. So far this script
allowed to have a lastlog file as well as a lastlog dir, whatever the
user preferred. This is no problem as long as ssh is the only
application using lastlog, but that's nothing we can be sure about, so
we decided to restrict lastlog to being a file in a Cygwin installation.
This also allows reliable porting and
2003 Aug 22
0
[PATCH] Small tweak to contrib/cygwin/ssh-user-config
Hi,
could somebody with checkin rights please apply the following patch
to contrib/cygwin/ssh-user-config? It just appends the RSA2 and DSA
keys to .ssh/authorized_keys instead of .ssh/authorized_keys2.
TIA,
Corinna
Index: contrib/cygwin/ssh-user-config
===================================================================
RCS file: /cvs/openssh_cvs/contrib/cygwin/ssh-user-config,v
retrieving