Skip to content

Commit

Permalink
wesnothd: Don't warn about FIFODIR being unset on Windows
Browse files Browse the repository at this point in the history
Since to my knowledge it's impossible to create named pipes on Windows on
a regular filesystem and both the listener and the sender have to use the
Win32 API to establish communication instead.
  • Loading branch information
irydacea committed May 1, 2015
1 parent 67a5a89 commit ba74c1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/server.cpp
Expand Up @@ -491,10 +491,10 @@ void server::load_config() {
# pragma message ("No FIFODIR set")
# define FIFODIR "d:/"
# else
# warning "No FIFODIR set"
# ifdef _WIN32
# define FIFODIR "d:/"
# else
# warning "No FIFODIR set"
# define FIFODIR "/var/run/wesnothd"
# endif
# endif
Expand Down

0 comments on commit ba74c1d

Please sign in to comment.