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
f9fe854e
Commit
f9fe854e
authored
Mar 13, 2022
by
Rob Swindell
💬
Browse files
Fix issues with std::min() again...
std::min() requires both arguments be of same type too.
parent
f7489c89
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/sbbs3/upload.cpp
src/sbbs3/upload.cpp
+2
-1
No files found.
src/sbbs3/upload.cpp
View file @
f9fe854e
...
...
@@ -22,6 +22,7 @@
#include "sbbs.h"
#include "sauce.h"
#include "filedat.h"
#include <algorithm>
/****************************************************************************/
/****************************************************************************/
...
...
@@ -170,7 +171,7 @@ bool sbbs_t::uploadfile(file_t* f)
}
if
(
cfg
.
dir
[
f
->
dir
]
->
misc
&
DIR_AONLY
)
/* Forced anonymous */
f
->
hdr
.
attr
|=
MSG_ANONYMOUS
;
uint32_t
cdt
=
(
uint32_t
)
min
(
length
,
UINT32_MAX
);
uint32_t
cdt
=
(
uint32_t
)
std
::
min
(
length
,
(
off_t
)
UINT32_MAX
);
smb_hfield_bin
(
f
,
SMB_COST
,
cdt
);
smb_hfield_str
(
f
,
SENDER
,
useron
.
alias
);
bprintf
(
text
[
FileNBytesReceived
],
f
->
name
,
i64toac
(
length
,
tmp
));
...
...
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