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
104f1b9d
...
104f1b9d323db2f2f49bd5068e11cac8a31cc479
authored
2002-12-25 20:32:23 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Do not include \r\n to the i18n strings.
1 parent
ea59ad80
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
comsat/action.c
comsat/action.c
View file @
104f1b9
...
...
@@ -335,7 +335,8 @@ open_rc (const char *filename, FILE *tty)
}
if
((
stb
.
st_mode
&
0777
)
!=
0600
)
{
fprintf
(
tty
,
_
(
"Warning: your .biffrc has wrong permissions
\r\n
"
));
fprintf
(
tty
,
"%s
\r\n
"
,
_
(
"Warning: your .biffrc has wrong permissions"
));
syslog
(
LOG_NOTICE
,
_
(
"%s's %s has wrong permissions"
),
username
,
filename
);
return
NULL
;
...
...
@@ -393,7 +394,8 @@ run_user_action (FILE *tty, const char *cr, message_t msg)
}
else
{
fprintf
(
tty
,
_
(
".biffrc:%d: unknown keyword
\r\n
"
),
line
);
fprintf
(
tty
,
_
(
".biffrc:%d: unknown keyword"
),
line
);
fprintf
(
tty
,
"
\r\n
"
);
syslog
(
LOG_ERR
,
_
(
"%s:.biffrc:%d: unknown keyword %s"
),
username
,
line
,
argv
[
0
]);
break
;
...
...
Please
register
or
sign in
to post a comment