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
56ad94b9a5ca11d5ed146178f1f207f91b1b3eae...20d67375336064d6c3e7d0f01fc285164ba6f619
Commits (1)
Treat .msg files the same as .asc when loading.
· 20d67375
Rob Swindell
authored
May 22, 2021
20d67375
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/syncdraw/load.c
src/syncdraw/load.c
+1
-1
No files found.
src/syncdraw/load.c
View file @
20d67375
...
...
@@ -616,7 +616,7 @@ LoadFile(char *Name)
/* Check for "known" extensions */
ext
=
getfext
(
Name
);
if
(
ext
)
{
if
(
stricmp
(
ext
,
".asc"
)
==
0
)
{
if
(
stricmp
(
ext
,
".asc"
)
==
0
||
stricmp
(
ext
,
".msg"
)
==
0
)
{
PCB
=
FALSE
;
ANSI
=
FALSE
;
AVATAR
=
FALSE
;
...
...