]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
upstream commit
authordtucker@openbsd.org <dtucker@openbsd.org>
Wed, 14 Jun 2017 00:31:38 +0000 (00:31 +0000)
committerDamien Miller <djm@mindrot.org>
Fri, 16 Jun 2017 00:51:46 +0000 (10:51 +1000)
Add user@host prefix to client's "Permisison denied"
messages, useful in particular when using "stacked" connections where it's
not clear which host is denying.  bz#2720, ok djm@ markus@

Upstream-ID: de88e1e9dcb050c98e85377482d1287a9fe0d2be

sshconnect2.c

index 9b0f845ce6f45898f240beaf77e7ca93dc1c062d..d2de5bc9605cb875c729b3e730666fed2fbf5d8f 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshconnect2.c,v 1.263 2017/05/31 07:00:13 markus Exp $ */
+/* $OpenBSD: sshconnect2.c,v 1.264 2017/06/14 00:31:38 dtucker Exp $ */
 /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
  * Copyright (c) 2008 Damien Miller.  All rights reserved.
@@ -469,7 +469,8 @@ userauth(Authctxt *authctxt, char *authlist)
        for (;;) {
                Authmethod *method = authmethod_get(authlist);
                if (method == NULL)
-                       fatal("Permission denied (%s).", authlist);
+                       fatal("%s@%s: Permission denied (%s).",
+                           authctxt->server_user, authctxt->host, authlist);
                authctxt->method = method;
 
                /* reset the per method handler */