search for: crosswalks

Displaying 12 results from an estimated 12 matches for "crosswalks".

Did you mean: crosswalk
2001 Jul 25
1
[PATCH]: sftp: Avoid paths beginning with "//"
Hi, the following patch has been suggested by Mark Bradshaw <bradshaw at staff.crosswalk.com>. The simple concatenation of filenames in sftp client and server results in creating filenames beginning with double slashes when the cwd is the root directory: cwd: "/bar/baz" file: "foo" cwd + "/" + file = "/bar/baz/foo" cwd: "/" file:
2006 Mar 27
3
XML Storage?
Hey Folks, Now that all the fun and games of learning Rails has almost sunk in it''s time to build something useful. I am tasked with building a system to control and search our large (and I mean large 1.5 million + and growing) photograph collection. I have been building databases for years and after thinking about the situation we decided that trying to store the
2002 Jan 23
0
[Bug 76] New: scp won't transfer files to or from the root under Cygwin
http://bugzilla.mindrot.org/show_bug.cgi?id=76 Summary: scp won't transfer files to or from the root under Cygwin Product: Portable OpenSSH Version: -current Platform: ix86 OS/Version: Cygwin on NT/2k Status: NEW Severity: normal Priority: P2 Component: scp AssignedTo:
2002 Feb 01
0
[Bug 76] scp won't transfer files to or from the root under Cygwin
http://bugzilla.mindrot.org/show_bug.cgi?id=76 ------- Additional Comments From bradshaw at staff.crosswalk.com 2002-02-02 10:07 ------- Created an attachment (id=19) cvs diff for the one line patch needed to fix this. ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2002 Jul 19
0
[Bug 365] New: .ssh/environment not read when home = /
http://bugzilla.mindrot.org/show_bug.cgi?id=365 Summary: .ssh/environment not read when home = / Product: Portable OpenSSH Version: -current Platform: ix86 OS/Version: Cygwin on NT/2k Status: NEW Severity: normal Priority: P2 Component: sshd AssignedTo: openssh-unix-dev at mindrot.org
2002 Jul 19
0
[Bug 365] .ssh/environment not read when home = /
http://bugzilla.mindrot.org/show_bug.cgi?id=365 ------- Additional Comments From bradshaw at staff.crosswalk.com 2002-07-19 23:01 ------- Created an attachment (id=133) Correct .ssh/environment path under cygwin ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
2001 Apr 19
3
Install problems with RedHat 7.0 RPM for 2.2.0
I just went through upgrading from 2.0.7 on Redhat 7.0 using the binary RPM provided by samba.org and noticed a problem with the swat install. It seems that the swat binary in the RPM is built to look for it's supporting files in /usr/share/samba/swat whereas the RPM installs said files in /usr/share/swat. This results in the following error message when you try to access swat: 400 Server
2002 Feb 27
2
static link
hi, i have downloaded the linux-version of openssh-3.0.2p1. i wanted to compile it statically with the following configure-statement: ./configure --prefix=/usr/local/opt/openssh-3.0.2p1 --with-pam --with-md5-passwords --with-v4-default --with-ldflags=-static --with-ssl-dir=/usr/local/opt/openssl It worked for the older 2.9 version, but now i get the following error: gcc -o ssh ssh.o
1997 Aug 02
44
Question
Is there a way to prevent other users from being able to map a drive from windoww95/NT to anyother user directory on the system. For example I can map to anyone's account on the system and have read only access, is there a way to stop this in either the global or share level? Thanks
2001 Aug 09
1
[PATCH]: ssh: Avoid paths beginning with "//"
We patched a few bugs in the sftp implementation last month that dealt with path concatenation created paths beginning with "//", which caused problems on Windows machines. Unfortunately, a few slipped by in ssh as well that I'd like to get patched. Ssh runs into the same problem when dealing with known_hosts files. When the home directory for a user is set to "/", it
2001 Sep 21
1
MaxStartups Confusion
I would like some clarification regarding the use of MaxStartups. I have always used the three colon separated value that enables the random drop capabilities, but the documentation for sshd says that MaxStartups can also take a single value which sets a max and leaves random drops off. When I try this, sshd tells me that it got an illegal integer. Looking at the code, in servconf.c it looks
2002 Jan 15
1
[PATCH]: scp: Avoid paths beginning with "//"
Scp has some path issues when transferring to or from the root file system of a windows machine (cygwin). It creates a path that begins with //, which indicates a UNC path on Windows. I sent in patches for similar issues last year. The fix is a one line change to determine if the path is "/", and not double up on the slashes. I've attached diffs to latest cvs. -Mark