Displaying 7 results from an estimated 7 matches for "liug".
Did you mean:
liu
2002 May 27
9
[Bug 257] sftp and 32 bit integar
http://bugzilla.mindrot.org/show_bug.cgi?id=257
------- Additional Comments From markus at openbsd.org 2002-05-27 17:09 -------
openssh is not derived from ssh.com-2.x or 3.x.
but adding support for 32bit int is not hard.
you can attach patches to this bug.
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2002 May 17
1
[Bug 248] New: scp doesn't support ssh2 protocol
...h2 protocol
Product: Portable OpenSSH
Version: -current
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: scp
AssignedTo: openssh-unix-dev at mindrot.org
ReportedBy: liug at mama.indstate.edu
server: running commercial ssh, with ssh2 procotol ONLY.
client: OpenSSH_3.1p1, SSH protocols 1.5/2.0, OpenSSL 0x0090601f
from the client, when I run scp to the server, I get:
scp: warning: Executing scp1 compatibility.
scp: FATAL: Executing ssh1 in compatibility mode failed...
2002 May 17
2
[Bug 248] scp doesn't support ssh2 protocol
http://bugzilla.mindrot.org/show_bug.cgi?id=248
------- Additional Comments From liug at mama.indstate.edu 2002-05-18 07:14 -------
I tried several different versions of openssh, and got the same problem with scp.
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2002 May 27
0
[Bug 257] New: sftp and 32 bit integar
...bit integar
Product: Portable OpenSSH
Version: -current
Platform: ix86
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: sftp
AssignedTo: openssh-unix-dev at mindrot.org
ReportedBy: liug at mama.indstate.edu
Watcom c/c++ compiler on qnx4 doesn't support 64 bit int, and openssh
./configure refuses to compile sftp and sftp-server for me.
I see 32 bit int support in the TODO list and am wondering when it will
be supported.
BTW, when I use the ssh from ssh.com, sftp works fine in...
2002 May 27
0
[Bug 258] New: scanf format not portable
...ot portable
Product: Portable OpenSSH
Version: -current
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: ssh
AssignedTo: openssh-unix-dev at mindrot.org
ReportedBy: liug at mama.indstate.edu
It seems the scanf format %[0-9] in Watcom doesn't work
the same way as in gcc. Here is a note in the
Watcom C/C++ reference:
Note: A dash (-) in the scanset doesn't indicate a range of
characters. For example, the string [0-9] matches the characters...
2002 May 27
0
[Bug 258] scanf format not portable
http://bugzilla.mindrot.org/show_bug.cgi?id=258
------- Additional Comments From liug at mama.indstate.edu 2002-05-28 02:53 -------
Here are some more info I gathered from the Watcom newsgroup:
The C99 draft explicitly said that:
"If a - character is in the scanlist
and is not the first, nor the second where the first
character is a ^, nor the last character, the
beha...
2000 Sep 12
0
OpenSSH 2.2.0p1 port to QNX 4
...penssh-2.2.0p1.orig/session.c Wed Aug 30 00:21:22 2000
--- openssh-2.2.0p1.qnx/session.c Tue Sep 12 09:27:19 2000
***************
*** 1861,1863 ****
--- 1861,1874 ----
if (xauthfile)
xauthfile_cleanup_proc(NULL);
}
+
+
+ #if defined(__QNX__) && !defined(__QNXNTO__)
+ /* Thanks to liug at mama.indstate.edu */
+
+ int initgroups(char *name,gid_t id)
+ {
+ return(0);
+ }
+
+ #endif /* __QNX__ && !__QNXNTO__ */
diff -cr openssh-2.2.0p1.orig/ssh.c openssh-2.2.0p1.qnx/ssh.c
*** openssh-2.2.0p1.orig/ssh.c Tue Aug 29 02:33:51 2000
--- openssh-2.2.0p1.qnx/ssh.c Tue Sep 12 10:...