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
fc01a6b1
...
fc01a6b1e14313ccdf83b53791bd1c9ec610a6be
authored
2001-10-26 14:05:20 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Do not complain if the file does not exist.
1 parent
84938a40
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
mail/source.c
mail/source.c
View file @
fc01a6b
...
...
@@ -55,7 +55,8 @@ mail_source (int argc, char **argv)
fp
=
fopen
(
argv
[
1
],
"r"
);
if
(
!
fp
)
{
util_error
(
"can't open `%s': %s"
,
argv
[
1
],
strerror
(
errno
));
if
(
errno
!=
ENOENT
)
util_error
(
"can't open `%s': %s"
,
argv
[
1
],
strerror
(
errno
));
return
1
;
}
...
...
Please
register
or
sign in
to post a comment