Displaying 1 result from an estimated 1 matches for "396e192".
Did you mean:
396,12
2015 Aug 17
2
[PATCH] Expand tilde for UNIX domain socket forwards.
---
channels.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/channels.c b/channels.c
index a84b487..396e192 100644
--- a/channels.c
+++ b/channels.c
@@ -3014,10 +3014,14 @@ channel_setup_fwd_listener_streamlocal(int type, struct Forward *fwd,
debug3("%s: type %d path %s", __func__, type, fwd->listen_path);
+ /* Expand home directory if necessary */
+ char *expanded_path = tilde_expand_...