mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:35:47 +00:00
[TFTPD] Fix compilation, and use the #define MAX_SERVERS where needed instead of hardcoding its value.
This commit is contained in:
parent
af57aba104
commit
a45713f4c2
2 changed files with 22 additions and 2 deletions
|
@ -137,7 +137,11 @@ struct data1
|
|||
struct data2
|
||||
{
|
||||
WSADATA wsaData;
|
||||
#ifdef __REACTOS__
|
||||
home homes[MAX_SERVERS];
|
||||
#else
|
||||
home homes[8];
|
||||
#endif
|
||||
FILE *logfile;
|
||||
data12 hostRanges[32];
|
||||
char fileRead;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue