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
1ec51b45
...
1ec51b458b3ef20ec8f9b87a25b8cef2b51eefc5
authored
2005-08-31 09:27:47 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Minor fix
1 parent
3a5017a5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
mailbox/mbox/folder.c
mailbox/mbox/folder.c
View file @
1ec51b4
...
...
@@ -346,16 +346,10 @@ list_helper (struct search_data *data,
idata
.
next
=
ilist
;
status
=
list_helper
(
data
,
gl
.
gl_pathv
[
i
],
level
,
&
idata
);
if
(
status
)
{
if
(
status
==
MU_ERR_NOENT
&&
!
mu_list_is_empty
(
data
->
result
))
status
=
0
;
else
break
;
}
}
}
}
globfree
(
&
gl
);
}
else
...
...
@@ -371,7 +365,10 @@ list_helper (struct search_data *data,
break
;
case
GLOB_NOMATCH
:
if
(
mu_list_is_empty
(
data
->
result
))
status
=
MU_ERR_NOENT
;
else
status
=
0
;
break
;
case
GLOB_NOSYS
:
...
...
Please
register
or
sign in
to post a comment