Displaying 13 results from an estimated 13 matches for "crosswalk".
Did you mean:
crosstalk
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: "/"...
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
...uct: Portable OpenSSH
Version: -current
Platform: ix86
OS/Version: Cygwin on NT/2k
Status: NEW
Severity: normal
Priority: P2
Component: scp
AssignedTo: openssh-unix-dev at mindrot.org
ReportedBy: bradshaw at staff.crosswalk.com
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 pat...
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 = /
...ct: 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
ReportedBy: bradshaw at staff.crosswalk.com
Under the cygwin environment, when the user sets their home directory to root
the .ssh/environment file isn't read in properly. This is similar to past
pathing problems in OpenSSH where the path that is assembled to find the file
begins with two slashes, instead of one. Under Cygwin...
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
...d
files in /usr/share/swat. This results in the following error message when
you try to access swat:
400 Server Error
chdir failed - the server is not configured correctly
The most expedient work around is to create the directory /usr/share/samba
and move /usr/share/swat there.
Steve Sedlmeyer
Crosswalk.com, Inc.
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
2024 May 30
1
How to call directly "dotTcl" C-function of the tcltk-package from the C-code of an external package?
I asked Tomas.
Apparently this works:
getNativeSymbolInfo("dotTcl",PACKAGE=getLoadedDLLs()$tcltk)
and the tcltk behavior was changed by
r84265 | hornik | 2023-04-15 08:44:36 +0200 (Sat, 15 Apr 2023) | 1 line
Try forcing symbols in ff calls.
Index: library/tcltk/src/init.c
===================================================================
--- library/tcltk/src/init.c
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