Displaying 20 results from an estimated 34 matches for "lflag".
Did you mean:
flag
2002 Oct 18
1
Patch: sftp client support of "ls [flags] [path [localfile]]" feature
...diff outputs against 3.5p1 to enable this feature.
*** sftp-int.c.orig Wed Sep 11 20:34:15 2002
--- sftp-int.c Fri Oct 18 13:39:46 2002
***************
*** 555,567 ****
/* sftp ls.1 replacement for directories */
static int
! do_ls_dir(struct sftp_conn *conn, char *path, char *strip_path, int lflag)
{
int n;
SFTP_DIRENT **d;
if ((n = do_readdir(conn, path, &d)) != 0)
return (n);
/* Count entries for sort */
for (n = 0; d[n] != NULL; n++)
--- 555,587 ----
/* sftp ls.1 replacement for directories */
static int
! do_ls_dir(struct sftp_conn *conn, char *path, char...
1999 Dec 09
2
Minor patches to openssh-1.2pre17 for Solaris
Almost worked first time (Solaris 2.7, gcc-2.95.2). Well done.
perl -i -p -e 's/-m644/-m 644/' Makefile.in
Also, it would be nice to be able to set up LFLAGS somehow, to provide the
following:
LFLAGS=-R/usr/local/lib
YMMV with the path. That way the executables will run without setting
LD_LIBRARY_PATH. I can't see where to tweak this in the configure setup at
the moment - I'll keep looking.
Gordon
--
Gordon Rowell Email...
2000 Oct 25
1
Typo in configure.in
...z "$need_dash_r" ; then
@@ -990,7 +990,7 @@
[
if test "x$withval" != "xno" ; then
- if test "x$withval" != "$xyes" ; then
+ if test "x$withval" != "xyes" ; then
CFLAGS="$CFLAGS -I${withval}/include"
LFLAGS="$LFLAGS -L${withval}/lib"
fi
_____________________
1999 Dec 08
0
Patches to help pre16 run on NetBSD
...gent scp $(EXTRA_TARGETS)
LIBS=@LIBS@
+LIBWRAP=@LIBWRAP@
AR=@AR@
RANLIB=@RANLIB@
INSTALL=@INSTALL@
@@ -48,7 +49,7 @@
sshd: sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o \
pty.o log-server.o login.o servconf.o serverloop.o bsd-login.o \
md5crypt.o libssh.a
- $(CC) -o $@ $^ $(LFLAGS) $(LIBS)
+ $(CC) -o $@ $^ $(LFLAGS) $(LIBS) $(LIBWRAP)
scp: scp.o libssh.a
$(CC) -o $@ $^ $(LFLAGS) $(LIBS)
--- configure.in.orig Wed Dec 8 12:53:00 1999
+++ configure.in Wed Dec 8 13:34:51 1999
@@ -269,9 +269,10 @@
[ --with-tcp-wrappers Enable tcpwrappers support],
[
AC_DEFIN...
2000 Aug 30
0
SNAP-2000082900: minor configuration detail
Hi!
In the INSTALL file, line 159,
CFLAGS="-O -m486" LFLAGS="-s" LIBS="-lrubbish" LD="/usr/foo/ld" ./configure
"LFLAGS" are mentioned. Probably "LDFLAGS" are meant. The LFLAGS is
also used at one place in "configure", please check configure.in:997,
I also assume the LDFLAGS was meant, as used corr...
2003 Oct 13
1
Problem in sftp 'ls' command output
...mail client could make the problem not obvious.
Here it is : the file names are concatenated, without spaces in-between]
Known problem ? If so, my apologies. If not, I did a little homework and
found that the sftp-int.c/do_ls_dir function seems to be the culprit. We
have first :
--------
if (!(lflag & SHORT_VIEW)) {
int m = 0, width = 80;
struct winsize ws;
/* Count entries for sort and find longest filename */
for (n = 0; d[n] != NULL; n++)
m = MAX(m, strlen(d[n]->filename));
if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) != -1)
width = ws.ws...
2005 Jun 01
0
openssh-4.1p1 SFTP client directory listing sorting bug
...r
everyone).
Please include me in any replies (that you want me to see); I'm not
subscribed to this list.
Thanks,
--Rob
-------------- next part --------------
--- openssh-4.1p1/sftp.c Mon Mar 14 07:08:12 2005
+++ openssh-4.1p1-1/sftp.c Wed Jun 1 12:50:47 2005
@@ -696,6 +696,7 @@
}
if (lflag & SORT_FLAGS) {
+ for (n = 0; d[n] != NULL; n++);
sort_flag = lflag & (SORT_FLAGS|LS_REVERSE_SORT);
qsort(d, n, sizeof(*d), sdirent_comp);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 b...
2009 Sep 29
4
[Bug 1655] New: sftp is unhappy with asterisks in filenames
https://bugzilla.mindrot.org/show_bug.cgi?id=1655
Summary: sftp is unhappy with asterisks in filenames
Product: Portable OpenSSH
Version: 5.2p1
Platform: Other
OS/Version: Mac OS X
Status: NEW
Severity: normal
Priority: P2
Component: sftp
AssignedTo: unassigned-bugs at mindrot.org
2001 Dec 20
0
warnings building openssh-3.0.2p1 on HP-UX 10.20
...st of everything.)
I'm not subscribed to this list, so CC me on replies.
This is the options I used to run configure:
- - cut here - -
#!/usr/bin/csh -vx
rm -f config.cache
setenv CC "cc"
setenv CFLAGS "-Ae +O2 -I/usr/local/include -I/nuinfo/local/openssl/include"
setenv LFLAGS "-L/usr/local/lib -L/opt/local/openssl"
nohup sh ./configure --prefix=/nuinfo/local/openssh \
--sysconfdir=/etc/openssh \
--with-ssl-dir=/nuinfo/local/openssl/lib \
--with-prngd-socket=/var/run/egd-pool \
--without-lastlog \
--with-...
2013 Apr 28
8
[UART] GPS 18-5Hz LVC and COM1 silence, OK on Linux though...
...reeBSD, the story is different:
# uname -a
FreeBSD fbsd 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4
09:23:10 UTC 2012
root at farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64
# stty -f /dev/cuau0.init raw 4800
# stty -f /dev/cuau0.init -a
speed 4800 baud; 0 rows; 0 columns;
lflags: -icanon -isig -iexten -echo -echoe -echok echoke -echonl echoctl
-echoprt -altwerase -noflsh -tostop -flusho -pendin -nokerninfo
-extproc
iflags: -istrip -icrnl -inlcr -igncr -ixon -ixoff ixany -imaxbel ignbrk
-brkint -inpck -ignpar -parmrk
oflags: -opost onlcr -ocrnl tab0 -onocr -onlret
cflag...
2008 Jul 21
2
sftp needs a long time for sending a filelist
Hello all
Im using sftp 1:4.7p1-8ubuntu1.2
in a batchjob
Ive noticed that sftp needs a long time for sending a filelist.
The timespan increases exponential if many files are on the
remoteserver.
for example "ls -la *.txt" needs 10 seconds for 2000 files
but needs 50 seconds for 4000 files.
For 150.000 Files i have to wait 15 minutes for example
but the
2015 Aug 26
0
APC BACK UPS 2200 model BZ2200BI-BR (update)
Hi Charles;
I tried both of your suggestions:
1) run stty -f /dev/cuaU0 raw jusbefore running solis
2) Unplug/plug, and run solis right after.
The problem still persists.
[~]>stty -a -f /dev/cuaU0
speed 9600 baud; 0 rows; 0 columns;
lflags: icanon isig iexten echo echoe -echok echoke -echonl echoctl
-echoprt -altwerase -noflsh -tostop -flusho -pendin -nokerninfo
-extproc
iflags: -istrip icrnl -inlcr -igncr ixon -ixoff ixany imaxbel -ignbrk
brkint -inpck -ignpar -parmrk
oflags: opost onlcr -ocrnl tab0 -onocr -...
2006 Dec 18
2
[PATCH] Fix for dovecotpw on powerpc and other architectures
...es where
the char is unsigned by default.
--- dovecot-1.0/src/util/dovecotpw.c (revisione 2066)
+++ dovecot-1.0.new/src/util/dovecotpw.c (copia locale)
@@ -40,7 +40,7 @@
const char *user = NULL;
char *scheme = NULL;
char *plaintext = NULL;
- char ch;
+ signed char ch;
int lflag = 0, Vflag = 0;
lib_init();
Thanks!
Fabio Tranchitella <kobold at debian.org> .''`.
Proud Debian GNU/Linux developer, admin and user. : :' :
`. `'`
http://people.debian.or...
2010 May 05
2
[Bug 1767] New: Inconsistend wildcard expansion in 'ls *'
https://bugzilla.mindrot.org/show_bug.cgi?id=1767
Summary: Inconsistend wildcard expansion in 'ls *'
Product: Portable OpenSSH
Version: 5.5p1
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: sftp
AssignedTo: unassigned-bugs at mindrot.org
2016 Dec 28
2
certificates keys on pkcs11 devices
Hi,
I have not found any way to use a Certificate with ssh-agent when my Key is
stored on a pkcs11 device. I can add my key with
ssh-add -s /usr/local/lib/opensc-pkcs11.so
but
ssh-add -s /usr/local/lib/opensc-pkcs11.so ~/.ssh/mykey-cert.pub
does not add the certificate to my agent. As far as I undestand, in
ssh-add.c line 580
if (pkcs11provider != NULL) {
if (update_card(agent_fd,
2015 Jul 26
2
[PATCH] ssh-agent: Add support to load additional certificates
...quot; -d Delete identity.\n");
@@ -483,7 +530,7 @@ main(int argc, char **argv)
extern int optind;
int agent_fd;
char *pkcs11provider = NULL;
- int r, i, ch, deleting = 0, ret = 0, key_only = 0;
+ int r, i, ch, deleting = 0, ret = 0, key_only = 0, cert_only = 0;
int xflag = 0, lflag = 0, Dflag = 0;
/* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
@@ -511,7 +558,7 @@ main(int argc, char **argv)
exit(2);
}
- while ((ch = getopt(argc, argv, "klLcdDxXE:e:s:t:")) != -1) {
+ while ((ch = getopt(argc, argv, "kplLcdDxXE:e:s:t:")) != -1)...
2023 Oct 14
3
Compiling within Samba Source-Tree
...ard', '-lndr-samba4', '-lgensec-samba4',
'-lutil-reg-samba4', '-lsmbd-shim-samba4', '-lsmbldaphelper-samba4',
'-lsamba-modules-samba4', '-lldbsamba-samba4', '-ltdb-samba4',
'-lsecrets3-samba4', '-lsmbldap', '-lflag-mapping-samba4',
'-lsamdb-common-samba4', '-lsamdb', '-lgenrand-samba4',
'-lutil-setid-samba4', '-ltime-basic-samba4', '-lasn1-samba4',
'-lkrb5-samba4', '-lgssapi-samba4', '-lcom-err-samba4',
'-ltdb-wrap-samba4'...
2016 Apr 19
0
libsmbregistry.so: undefined reference to `gfree_charcnv'
...i-samba4 -lasn1-samba4 -lasn1util -lwbclient -lldb -lsamba-modules
-lsamba-credentials -lndr-samba -lcliauth -lauthkrb5 -lsamdb
-lheimbase-samba4 -lhx509-samba4 -lhcrypto-samba4 -lwind-samba4
-lwinbind-client -lsamdb-common -lldbsamba -lndr-standard -lndr-krb5pac
-lauth-sam-reply -lcli-ldap-common -lflag-mapping -lcups -lldap -llber
-lresolv -lutil -lgcrypt -lgnutls -lz -lrt -ldl -lnsl -lattr -lcrypt -ltdb
-lcap -lbsd
default/source3/libsmbregistry.so: undefined reference to `gfree_charcnv'
collect2: error: ld returned 1 exit status
default/source3/libsmbregistry.so: undefined reference to `gfr...
2005 Jan 19
22
[Bug 948] high CPU in sshd after tcp_wrappers deny
http://bugzilla.mindrot.org/show_bug.cgi?id=948
------- Additional Comments From dtucker at zip.com.au 2005-01-19 20:01 -------
Also worth trying: patch #772 in bug #973
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2006 Nov 17
1
gjournal on 6.x wont build
Hi all,
I was intending on trying out gjournal on a new disk i've added in my
desktop. I had a look to see what the most recent patch provided by
Pawel and found
http://people.freebsd.org/~pjd/patches/gjournal6_20061024.patch
I created the directories as per Pawel's original post
(http://lists.freebsd.org/pipermail/freebsd-fs/2006-June/001962.html)
and the patch succeeded with no failed