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
20aa7ed1
...
20aa7ed1fdf604397914e7a851451015013b9503
authored
2003-09-10 14:07:35 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(rmf): Bugfix.
1 parent
a9cfd37d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
mh/rmf.c
mh/rmf.c
View file @
20aa7ed
...
...
@@ -116,7 +116,6 @@ rmf (const char *name)
{
DIR
*
dir
;
struct
dirent
*
entry
;
char
*
cur_path
;
int
failures
=
0
;
dir
=
opendir
(
name
);
...
...
@@ -124,7 +123,7 @@ rmf (const char *name)
if
(
!
dir
)
{
mh_error
(
_
(
"can't scan folder %s: %s"
),
name
,
strerror
(
errno
));
return
;
return
1
;
}
if
(
interactive
&&
!
mh_getyn
(
_
(
"Remove folder %s"
),
name
))
...
...
Please
register
or
sign in
to post a comment