[PATCH/RFC/GSoC 2/3] git-credential-cache: put socket to xdg-compatible path
From: Hui Yiqun <hidden>
Date: 2016-06-15 23:08:45
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Hui Yiqun <hidden>
Date: 2016-06-15 23:08:45
Subsystem:
the rest · Maintainer:
Linus Torvalds
move .git-credential-cache/socket to xdg_runtime_dir("credential-cache.sock")
Signed-off-by: Hui Yiqun <redacted>
---
credential-cache.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/credential-cache.c b/credential-cache.c
index f4afdc6..40d838b 100644
--- a/credential-cache.c
+++ b/credential-cache.c@@ -105,7 +105,7 @@ int main(int argc, const char **argv) op = argv[0]; if (!socket_path) - socket_path = expand_user_path("~/.git-credential-cache/socket"); + socket_path = xdg_runtime_dir("credential-cache.sock"); if (!socket_path) die("unable to find a suitable socket path; use --socket");
--
2.7.2