Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
61e6f5d3c6c6a560ef52eac10ec5795af2b35bdb...bf3da76e32fbc8cd7785fa1fe73297082972d4f9
Commits (1)
Resolve GCC warnings
· bf3da76e
Rob Swindell
authored
Apr 04, 2022
Fixes isue
#388
- no change in behavior
bf3da76e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/sbbs3/sbbsecho.c
src/sbbs3/sbbsecho.c
+3
-3
No files found.
src/sbbs3/sbbsecho.c
View file @
bf3da76e
...
...
@@ -4826,9 +4826,9 @@ void export_echomail(const char* sub_code, const nodecfg_t* nodecfg, bool rescan
}
if
((
scfg
.
sub
[
subnum
]
->
misc
&
SUB_ASCII
)
&&
smb_msg_is_utf8
(
&
msg
))
{
utf8_to_cp437_inplace
(
buf
);
utf8_to_cp437_inplace
(
hdr
.
to
),
ascii_str
(
hdr
.
to
);
utf8_to_cp437_inplace
(
hdr
.
from
),
ascii_str
(
hdr
.
from
);
utf8_to_cp437_inplace
(
hdr
.
subj
),
ascii_str
(
hdr
.
subj
);
utf8_to_cp437_inplace
(
hdr
.
to
),
ascii_str
(
(
uchar
*
)
hdr
.
to
);
utf8_to_cp437_inplace
(
hdr
.
from
),
ascii_str
(
(
uchar
*
)
hdr
.
from
);
utf8_to_cp437_inplace
(
hdr
.
subj
),
ascii_str
(
(
uchar
*
)
hdr
.
subj
);
}
lprintf
(
LOG_DEBUG
,
"Exporting %s message #%u from %s to %s in area: %s"
...
...