From 2d80b0272cf3e891fe53348e7477c51c07c59375 Mon Sep 17 00:00:00 2001
From: Alberto Garcia Illera <agarciaillera@gmail.com>
Date: Wed, 27 Mar 2019 13:00:26 -0700
Subject: [PATCH] Avoid leaking full path when compiling

Signed-off-by: Alberto Garcia Illera <agarciaillera@gmail.com>
---
 src/misc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/misc.c b/src/misc.c
index a048637f..dccb12a3 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -1083,8 +1083,8 @@ int ssh_timeout_elapsed(struct ssh_timestamp *ts, int timeout) {
                   * session->timeout, session->timeout_usec.
                   */
             SSH_LOG(SSH_LOG_WARN, "ssh_timeout_elapsed called with -2. this needs to "
-                            "be fixed. please set a breakpoint on %s:%d and "
-                            "fix the caller\n", __FILE__, __LINE__);
+                            "be fixed. please set a breakpoint on misc.c:%d and "
+                            "fix the caller\n", __LINE__);
             return 0;
         case -1: /* -1 means infinite timeout */
             return 0;
-- 
2.17.0.windows.1

