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
0c819952
...
0c81995234b9467192aae61b7c4a71792c24e9ee
authored
2003-10-06 13:11:28 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Bugfix
1 parent
fc4b1c93
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
mail/decode.c
mailbox/locale.c
mail/decode.c
View file @
0c81995
...
...
@@ -58,8 +58,10 @@ display_message (message_t mesg, msgset_t *msgset, void *arg)
size_t
lines
=
0
;
struct
decode_closure
*
closure
=
arg
;
int
pagelines
=
util_get_crt
();
attribute_t
attr
=
NULL
;
if
(
util_isdeleted
(
mesg
))
message_get_attribute
(
mesg
,
&
attr
);
if
(
attribute_is_deleted
(
attr
))
return
1
;
message_lines
(
mesg
,
&
lines
);
...
...
mailbox/locale.c
View file @
0c81995
...
...
@@ -231,7 +231,7 @@ mu_charset_lookup (char *lang, char *terr)
for
(
p
=
langtab
;
p
->
lang
;
p
++
)
if
(
strcasecmp
(
p
->
lang
,
lang
)
==
0
&&
(
terr
==
NULL
||
!
p
->
terr
==
NULL
||
p
->
terr
==
NULL
||
!
strcasecmp
(
p
->
terr
,
terr
)
==
0
))
return
p
->
charset
;
return
NULL
;
...
...
Please
register
or
sign in
to post a comment