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
Commits
bf3da76e
Commit
bf3da76e
authored
Apr 04, 2022
by
Rob Swindell
💬
Browse files
Resolve GCC warnings
Fixes isue
#388
- no change in behavior
parent
61e6f5d3
Pipeline
#2968
passed with stage
in 13 minutes and 22 seconds
Changes
1
Pipelines
1
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"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment