Displaying 8 results from an estimated 8 matches for "link_opnotsupp_errno".
2007 Mar 18
3
[Bug 1300] rename doesn't work on Linux vfat
http://bugzilla.mindrot.org/show_bug.cgi?id=1300
Summary: rename doesn't work on Linux vfat
Product: Portable OpenSSH
Version: 3.8p1
Platform: All
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: sftp-server
AssignedTo: bitbucket at mindrot.org
ReportedBy:
2008 Nov 06
10
[Bug 1535] New: rename doesn't fall back to rename syscall upon ENOSYS of link syscall
https://bugzilla.mindrot.org/show_bug.cgi?id=1535
Summary: rename doesn't fall back to rename syscall upon ENOSYS
of link syscall
Product: Portable OpenSSH
Version: 5.1p1
Platform: ix86
OS/Version: Linux
Status: NEW
Keywords: patch
Severity: normal
Priority: P3
Component:
2008 Feb 13
0
sftp-server rename and handling of EXDEV
...same behavior when you try to rename across regular
partition boundaries, as a hardlink will fail. I understand that
renaming was changed a while back so it would not be racy, but is
there any reason it shouldn't fall back to a racy rename if EXDEV is
returned?
I know currently that if LINK_OPNOTSUPP_ERRNO is returned, we'll try a
racy rename. Can this be extended to conditions where EXDEV is returned?
--
Mike Garrison
2008 Mar 05
6
[Bug 1447] New: sftp-server rename fails when EXDEV is returned
https://bugzilla.mindrot.org/show_bug.cgi?id=1447
Summary: sftp-server rename fails when EXDEV is returned
Classification: Unclassified
Product: Portable OpenSSH
Version: 4.7p1
Platform: All
2012 May 09
1
warning from configuring openssh-6.0p1
...1
| #define HAVE_TTYENT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_UTIME_H 1
| #define HAVE_UTMP_H 1
| #define HAVE_UTMPX_H 1
| #define HAVE_LASTLOG_H 1
| #define HAVE_SYS_MOUNT_H 1
| #define PAM_TTY_KLUDGE 1
| #define LOCKED_PASSWD_PREFIX "!"
| #define SPT_TYPE SPT_REUSEARGV
| #define LINK_OPNOTSUPP_ERRNO EPERM
| #define _PATH_BTMP "/var/log/btmp"
| #define USE_BTMP 1
| #define LINUX_OOM_ADJUST 1
| #define HAVE_LINUX_IF_TUN_H 1
| #define SSH_TUN_LINUX 1
| #define SSH_TUN_COMPAT_AF 1
| #define SSH_TUN_PREPEND_AF 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H...
2009 Apr 08
3
libedit not found on SUse 11.1
Included below is a diff between the output from configure on a 64 bit
SUse 11.1 (doesn't find libedit) and a 64 bit Suse 10.3 (does find
libedit) for otherwise identical setups.
1. How can I get the output set up to look at conftest.c?
2. I added a set -x to configure above LIBEDIT_MSG=no
3. ./configure --with-ldflags="-L/usr/lib64" --with-cflags="-ggdb3
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...K */
/* #undef USE_OPENSC */
#define OPENSSL_PRNG_ONLY 1
/* #undef WITH_ABBREV_NO_TTY */
/* #undef SUPERUSER_PATH */
/* #undef PRIVSEP_PATH */
/* #undef DISABLE_FD_PASSING */
#define HAVE_STRICT_MKSTEMP 1
#define HAVE_NANOSLEEP 1
/* #undef SSHD_ACQUIRES_CTTY */
/* #undef BROKEN_CMSG_TYPE */
#define LINK_OPNOTSUPP_ERRNO EPERM
/* #undef LOCKED_PASSWD_STRING */
#define LOCKED_PASSWD_PREFIX "!"
/* #undef LOCKED_PASSWD_SUBSTR */
/* #undef HAVE_GETRRSETBYNAME */
#define HAVE_HEADER_AD 1
/* #undef BIND_8_COMPAT */
#define HAVE_PROC_PID 1
/* #undef AIX_GETNAMEINFO_HACK */
/* #undef BROKEN_GETGROUPS */
/* #undef...
2005 Jul 26
1
Linux in-kernel keys support
...library (-lnsl). */
#undef HAVE_LIBNSL
diff -ubr -x configure openssh-4.1p1/configure.ac openssh-4.1p1-hacked/configure.ac
--- openssh-4.1p1/configure.ac 2005-04-24 09:52:23.000000000 +0200
+++ openssh-4.1p1-hacked/configure.ac 2005-07-25 23:15:32.000000000 +0200
@@ -261,6 +261,7 @@
AC_DEFINE(LINK_OPNOTSUPP_ERRNO, EPERM)
AC_DEFINE(_PATH_BTMP, "/var/log/btmp", [log for bad login attempts])
AC_DEFINE(USE_BTMP, 1, [Use btmp to log bad logins])
+ AC_CHECK_LIB(keyutil, keyctl_read)
inet6_default_4in6=yes
case `uname -r` in
1.*|2.0.*)
diff -ubr -x configure openssh-4.1p1/key.c openssh-4.1p1-ha...