diff options
-rw-r--r-- | include/version.sh.c | 3 | ||||
-rw-r--r-- | src/protocol/inspircd.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 9 insertions, 2 deletions
diff --git a/include/version.sh.c b/include/version.sh.c index bf2bac91d..67e495d5e 100644 --- a/include/version.sh.c +++ b/include/version.sh.c @@ -219,5 +219,6 @@ void parse_line(FILE * fd, char *line) } else fputc(*c, fd); } - fprintf(fd, "\r\n"); + /* We only need \n here - we didn't open the file as binary -GD */ + fprintf(fd, "\n"); } diff --git a/src/protocol/inspircd.c b/src/protocol/inspircd.c index d3d4ac0b4..c3630a3b7 100644 --- a/src/protocol/inspircd.c +++ b/src/protocol/inspircd.c @@ -18,9 +18,11 @@ #include "pseudo.h" #include "inspircd.h" +#ifndef _WIN32 #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> +#endif #ifdef _WIN32 #include "winsock.h" diff --git a/version.log b/version.log index 5e36263e4..d38b047dc 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="14" VERSION_EXTRA="" -VERSION_BUILD="1048" +VERSION_BUILD="1049" # $Log$ # +# BUILD : 1.7.14 (1049) +# BUGS : +# NOTES : Two small win32 fixes... +# # BUILD : 1.7.14 (1048) # BUGS : 510 # NOTES : Fixed a lot of redundant function declarations |