mirror of git://anongit.mindrot.org/openssh.git
upstream: avoid spurious error message when ssh-keygen creates files
outside ~/.ssh; with dtucker@ OpenBSD-Commit-ID: ac0c662d44607e00ec78c266ee60752beb1c7e08
This commit is contained in:
parent
32b2502a9d
commit
976c4f8628
|
@ -49,7 +49,6 @@ PICFLAG=@PICFLAG@
|
|||
LIBS=@LIBS@
|
||||
K5LIBS=@K5LIBS@
|
||||
GSSLIBS=@GSSLIBS@
|
||||
SSHLIBS=@SSHLIBS@
|
||||
SSHDLIBS=@SSHDLIBS@
|
||||
LIBEDIT=@LIBEDIT@
|
||||
LIBFIDO2=@LIBFIDO2@
|
||||
|
@ -206,7 +205,7 @@ libssh.a: $(LIBSSH_OBJS)
|
|||
$(RANLIB) $@
|
||||
|
||||
ssh$(EXEEXT): $(LIBCOMPAT) libssh.a $(SSHOBJS)
|
||||
$(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHLIBS) $(LIBS) $(GSSLIBS)
|
||||
$(LD) -o $@ $(SSHOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) $(GSSLIBS)
|
||||
|
||||
sshd$(EXEEXT): libssh.a $(LIBCOMPAT) $(SSHDOBJS)
|
||||
$(LD) -o $@ $(SSHDOBJS) $(LDFLAGS) -lssh -lopenbsd-compat $(SSHDLIBS) $(LIBS) $(GSSLIBS) $(K5LIBS)
|
||||
|
|
|
@ -4516,13 +4516,10 @@ AC_ARG_WITH([selinux],
|
|||
LIBS="$LIBS -lselinux"
|
||||
],
|
||||
AC_MSG_ERROR([SELinux support requires libselinux library]))
|
||||
SSHLIBS="$SSHLIBS $LIBSELINUX"
|
||||
SSHDLIBS="$SSHDLIBS $LIBSELINUX"
|
||||
AC_CHECK_FUNCS([getseuserbyname get_default_context_with_level])
|
||||
LIBS="$save_LIBS"
|
||||
LIBS="$save_LIBS $LIBSELINUX"
|
||||
fi ]
|
||||
)
|
||||
AC_SUBST([SSHLIBS])
|
||||
AC_SUBST([SSHDLIBS])
|
||||
|
||||
# Check whether user wants Kerberos 5 support
|
||||
|
@ -5483,9 +5480,6 @@ echo " Libraries: ${LIBS}"
|
|||
if test ! -z "${SSHDLIBS}"; then
|
||||
echo " +for sshd: ${SSHDLIBS}"
|
||||
fi
|
||||
if test ! -z "${SSHLIBS}"; then
|
||||
echo " +for ssh: ${SSHLIBS}"
|
||||
fi
|
||||
|
||||
echo ""
|
||||
|
||||
|
|
10
hostfile.c
10
hostfile.c
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: hostfile.c,v 1.81 2020/06/26 05:02:03 dtucker Exp $ */
|
||||
/* $OpenBSD: hostfile.c,v 1.82 2020/06/26 05:42:16 djm Exp $ */
|
||||
/*
|
||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||
|
@ -465,9 +465,10 @@ hostfile_create_user_ssh_dir(const char *filename, int notify)
|
|||
return;
|
||||
len = p - filename;
|
||||
dotsshdir = tilde_expand_filename("~/" _PATH_SSH_USER_DIR, getuid());
|
||||
if ((strlen(dotsshdir) > len || strncmp(filename, dotsshdir, len) != 0
|
||||
|| stat(dotsshdir, &st)) == 0)
|
||||
; /* do nothing, path not in ~/.ssh or dir already exists */
|
||||
if (strlen(dotsshdir) > len || strncmp(filename, dotsshdir, len) != 0)
|
||||
goto out; /* not ~/.ssh prefixed */
|
||||
if (stat(dotsshdir, &st) == 0)
|
||||
goto out; /* dir already exists */
|
||||
else if (errno != ENOENT)
|
||||
error("Could not stat %s: %s", dotsshdir, strerror(errno));
|
||||
else {
|
||||
|
@ -483,6 +484,7 @@ hostfile_create_user_ssh_dir(const char *filename, int notify)
|
|||
ssh_selinux_setfscreatecon(NULL);
|
||||
#endif
|
||||
}
|
||||
out:
|
||||
free(dotsshdir);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue