summaryrefslogtreecommitdiffstats
path: root/authfd.c
diff options
context:
space:
mode:
authordtucker@openbsd.org <dtucker@openbsd.org>2022-04-27 11:08:55 +0000
committerDarren Tucker <dtucker@dtucker.net>2022-04-27 21:33:11 +1000
commit0979e29356915261d69a9517a1e0aaade7c9fc75 (patch)
treeeb09f8141bf4460c0d3300692cc13d8d9f1066eb /authfd.c
parent67b7c784769c74fd4d6b147d91e17e1ac1a8a96d (diff)
upstream: Add authfd path to debug output. ok markus@
Diffstat (limited to 'authfd.c')
-rw-r--r--authfd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/authfd.c b/authfd.c
index 76e48aab..b633e35e 100644
--- a/authfd.c
+++ b/authfd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: authfd.c,v 1.129 2021/12/19 22:10:24 djm Exp $ */
+/* $OpenBSD: authfd.c,v 1.130 2022/04/27 11:08:55 dtucker Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -92,6 +92,7 @@ ssh_get_authentication_socket_path(const char *authsocket, int *fdp)
int sock, oerrno;
struct sockaddr_un sunaddr;
+ debug3_f("path '%s'", authsocket);
memset(&sunaddr, 0, sizeof(sunaddr));
sunaddr.sun_family = AF_UNIX;
strlcpy(sunaddr.sun_path, authsocket, sizeof(sunaddr.sun_path));