Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
d4cca7e4
...
d4cca7e49c654394f10fecf38cc476e508a441d6
authored
2004-04-08 13:07:25 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(main): Fixed diagnostics to better suit i18n.
1 parent
760ca7b6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
dotlock/dotlock.c
dotlock/dotlock.c
View file @
d4cca7e
...
...
@@ -184,8 +184,10 @@ main (int argc, char *argv[])
locker_destroy
(
&
locker
);
if
(
debug
&&
err
)
fprintf
(
stderr
,
_
(
"%s %s failed: %s
\n
"
),
unlock
?
_
(
"unlocking"
)
:
_
(
"locking"
),
file
,
mu_strerror
(
err
));
fprintf
(
stderr
,
unlock
?
_
(
"unlocking the file %s failed: %s
\n
"
)
:
_
(
"locking the file %s failed: %s
\n
"
),
file
,
mu_strerror
(
err
));
switch
(
err
)
{
...
...
Please
register
or
sign in
to post a comment