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
60dead5d
...
60dead5d75e33eb414093ec0af989bf95d21577c
authored
2000-05-19 07:51:38 +0000
by
Sean 'Shaleh' Perry
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fixed a typo on line 54 of mh.c
1 parent
e429b2b6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
libmailbox/mh.c
libmailbox/mh.c
View file @
60dead5
...
...
@@ -51,7 +51,7 @@ mh_open (mailbox * mbox)
char
*
foo
=
NULL
;
if
(
entry
->
d_name
[
0
]
==
'.'
)
{
if
(
strcmp
(
entry
->
d_name
,
".mh_sequences"
==
0
)
)
if
(
strcmp
(
entry
->
d_name
,
".mh_sequences"
)
==
0
)
/* TODO: deal with mh sequence files */
;
continue
;
}
...
...
Please
register
or
sign in
to post a comment