summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2001-08-19 04:55:51 +0000
committerPaul Smith <psmith@gnu.org>2001-08-19 04:55:51 +0000
commit9302338304b5221160aaf8e060a85ac05eb428b7 (patch)
tree945bfde640c9e21b1c33b73d405f3e39e51fe69b /misc.c
parent74f08c639d3caf87c8c1756cdda6381f3d45a288 (diff)
downloadgunmake-9302338304b5221160aaf8e060a85ac05eb428b7.tar.gz
Installed the da.po (Danish) translation file.
Fixed some translation string issues.
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/misc.c b/misc.c
index 276706e..04f1617 100644
--- a/misc.c
+++ b/misc.c
@@ -652,7 +652,7 @@ log_access (flavor)
but we write this one to stderr because it might be
run in a child fork whose stdout is piped. */
- fprintf (stderr, _("%s access: user %lu (real %lu), group %lu (real %lu)\n"),
+ fprintf (stderr, _("%s: user %lu (real %lu), group %lu (real %lu)\n"),
flavor, (unsigned long) geteuid (), (unsigned long) getuid (),
(unsigned long) getegid (), (unsigned long) getgid ());
fflush (stderr);
@@ -673,7 +673,7 @@ init_access ()
if (user_uid == -1 || user_gid == -1 || make_uid == -1 || make_gid == -1)
pfatal_with_name ("get{e}[gu]id");
- log_access (_("Initialized"));
+ log_access (_("Initialized access"));
current_access = make;
#endif
@@ -752,7 +752,7 @@ user_access ()
current_access = user;
- log_access ("User");
+ log_access (_("User access"));
#endif /* GETLOADAVG_PRIVILEGED */
}
@@ -800,7 +800,7 @@ make_access ()
current_access = make;
- log_access ("Make");
+ log_access (_("Make access"));
#endif /* GETLOADAVG_PRIVILEGED */
}
@@ -834,7 +834,7 @@ child_access ()
pfatal_with_name ("child_access: setregid");
#endif
- log_access ("Child");
+ log_access (_("Child access"));
#endif /* GETLOADAVG_PRIVILEGED */
}