aboutsummaryrefslogtreecommitdiff
path: root/credential-cache--daemon.c
diff options
context:
space:
mode:
authorVasco Almeida <vascomalmeida@sapo.pt>2016-10-17 13:15:28 +0000
committerJunio C Hamano <gitster@pobox.com>2016-10-17 14:51:47 -0700
commitaf64f20b1e753f9ede6004e8f15e28888097b874 (patch)
tree3b9ea17eca017aec195bedadf68512935ce1a113 /credential-cache--daemon.c
parent87cb7845fee4f23434da8b601583dab225dd85d6 (diff)
downloadgit-af64f20b1e753f9ede6004e8f15e28888097b874.tar.gz
git-af64f20b1e753f9ede6004e8f15e28888097b874.tar.xz
i18n: credential-cache--daemon: mark advice for translation
Mark permissions_advice for translation. Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'credential-cache--daemon.c')
-rw-r--r--credential-cache--daemon.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/credential-cache--daemon.c b/credential-cache--daemon.c
index 1e5f16a3a..46c593752 100644
--- a/credential-cache--daemon.c
+++ b/credential-cache--daemon.c
@@ -219,11 +219,11 @@ static void serve_cache(const char *socket_path, int debug)
close(fd);
}
-static const char permissions_advice[] =
+static const char permissions_advice[] = N_(
"The permissions on your socket directory are too loose; other\n"
"users may be able to read your cached credentials. Consider running:\n"
"\n"
-" chmod 0700 %s";
+" chmod 0700 %s");
static void init_socket_directory(const char *path)
{
struct stat st;
@@ -232,7 +232,7 @@ static void init_socket_directory(const char *path)
if (!stat(dir, &st)) {
if (st.st_mode & 077)
- die(permissions_advice, dir);
+ die(_(permissions_advice), dir);
} else {
/*
* We must be sure to create the directory with the correct mode,