Skip to content

Commit

Permalink
Fixed a compile issue on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianReimold committed Nov 2, 2023
1 parent 9802434 commit ab6e47d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions fineftp-server/src/ftp_session.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
#include <sstream>
#include <string>
#include <sys/types.h>
#include <unistd.h>
#include <vector>

#include <file_man.h>
Expand All @@ -28,7 +27,9 @@
#include <sys/stat.h>

#ifdef WIN32
#include "win_str_convert.h"
#include "win_str_convert.h"
#else
#include <unistd.h>
#endif // WIN32


Expand Down

0 comments on commit ab6e47d

Please sign in to comment.