summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2010-03-24 13:03:32 +1100
committerDarren Tucker <dtucker@zip.com.au>2010-03-24 13:03:32 +1100
commit62131dc6e2aa875b26a4deac097f256a382d816a (patch)
treefa69aca65da19d69221165506ad0644c5ae323f4
parentb086d4ac70d4a46cd74f66b86b809992bfc0ecb8 (diff)
- (dtucker) [contrib/cygwin/ssh-host-config] Mount the Windows directory
containing the services file explicitely case-insensitive. This allows to tweak the Windows services file reliably. Patch from vinschen at redhat.
-rw-r--r--ChangeLog5
-rw-r--r--contrib/cygwin/ssh-host-config2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d4acdc414..d94247ab7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
120100324
2 - (dtucker) [contrib/cygwin/ssh-host-config] Mount the Windows directory
3 containing the services file explicitely case-insensitive. This allows to
4 tweak the Windows services file reliably. Patch from vinschen at redhat.
5
120100321 620100321
2 - (djm) OpenBSD CVS Sync 7 - (djm) OpenBSD CVS Sync
3 - jmc@cvs.openbsd.org 2010/03/08 09:41:27 8 - jmc@cvs.openbsd.org 2010/03/08 09:41:27
diff --git a/contrib/cygwin/ssh-host-config b/contrib/cygwin/ssh-host-config
index b6f9511e2..d968d4619 100644
--- a/contrib/cygwin/ssh-host-config
+++ b/contrib/cygwin/ssh-host-config
@@ -90,7 +90,7 @@ update_services_file() {
90 fi 90 fi
91 _serv_tmp="${_my_etcdir}/srv.out.$$" 91 _serv_tmp="${_my_etcdir}/srv.out.$$"
92 92
93 mount -o text -f "${_win_etcdir}" "${_my_etcdir}" 93 mount -o text,posix=0,noacl -f "${_win_etcdir}" "${_my_etcdir}"
94 94
95 # Depends on the above mount 95 # Depends on the above mount
96 _wservices=`cygpath -w "${_services}"` 96 _wservices=`cygpath -w "${_services}"`