summaryrefslogtreecommitdiff
path: root/debian/patches/keyfile-debug.patch
blob: 7a46a78d77c96998bae15b3af437fc11edcc6111 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Index: b/auth.c
===================================================================
--- a/auth.c
+++ b/auth.c
@@ -516,8 +516,12 @@
 	 * Open the file containing the authorized keys
 	 * Fail quietly if file does not exist
 	 */
-	if ((fd = open(file, O_RDONLY|O_NONBLOCK)) == -1)
+	if ((fd = open(file, O_RDONLY|O_NONBLOCK)) == -1) {
+		if (errno != ENOENT)
+			debug("Could not open keyfile '%s': %s", file,
+			   strerror(errno));
 		return NULL;
+	}
 
 	if (fstat(fd, &st) < 0) {
 		close(fd);