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
9ceac518
...
9ceac518e250a0948927ad779336dc1123d9e724
authored
2002-09-25 14:23:43 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(const char *days): Bugfix. "Sun" must be the first entry in the array.
1 parent
2b726c82
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/parse822.c
mailbox/parse822.c
View file @
9ceac51
...
...
@@ -1356,13 +1356,13 @@ parse822_day (const char **p, const char *e, int *day)
/* day = "Mon" / "Tue" / "Wed" / "Thu" / "Fri" / "Sat" / "Sun" */
const
char
*
days
[]
=
{
"Sun"
,
"Mon"
,
"Tue"
,
"Wed"
,
"Thu"
,
"Fri"
,
"Sat"
,
"Sun"
,
NULL
};
...
...
Please
register
or
sign in
to post a comment