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
4b5a75c3
Commit
4b5a75c3
authored
Mar 12, 2022
by
Rob Swindell
💬
Browse files
Address warnings introduced in previous commit
parent
1abae6a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/sbbs3/smbutil.c
src/sbbs3/smbutil.c
+2
-2
No files found.
src/sbbs3/smbutil.c
View file @
4b5a75c3
...
...
@@ -1532,9 +1532,9 @@ void readmsgs(ulong start, ulong count)
printf
(
"Subj : %s
\n
"
,
msg
.
subj
);
printf
(
"Attr : %04hX (%s)"
,
msg
.
hdr
.
attr
,
smb_msgattrstr
(
msg
.
hdr
.
attr
,
tmp
,
sizeof
(
tmp
)));
if
(
msg
.
hdr
.
auxattr
!=
0
)
printf
(
"
\n
Aux : %08
l
X (%s)"
,
msg
.
hdr
.
auxattr
,
smb_auxattrstr
(
msg
.
hdr
.
auxattr
,
tmp
,
sizeof
(
tmp
)));
printf
(
"
\n
Aux : %08X (%s)"
,
msg
.
hdr
.
auxattr
,
smb_auxattrstr
(
msg
.
hdr
.
auxattr
,
tmp
,
sizeof
(
tmp
)));
if
(
msg
.
hdr
.
netattr
!=
0
)
printf
(
"
\n
Net : %08
l
X (%s)"
,
msg
.
hdr
.
netattr
,
smb_netattrstr
(
msg
.
hdr
.
netattr
,
tmp
,
sizeof
(
tmp
)));
printf
(
"
\n
Net : %08X (%s)"
,
msg
.
hdr
.
netattr
,
smb_netattrstr
(
msg
.
hdr
.
netattr
,
tmp
,
sizeof
(
tmp
)));
if
(
*
msg
.
to
)
{
printf
(
"
\n
To : %s"
,
msg
.
to
);
if
(
msg
.
to_net
.
type
)
...
...
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