summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/sockutil.c2
-rw-r--r--version.log6
2 files changed, 6 insertions, 2 deletions
diff --git a/src/sockutil.c b/src/sockutil.c
index 2308dd528..049f181d3 100644
--- a/src/sockutil.c
+++ b/src/sockutil.c
@@ -453,7 +453,7 @@ char *sgets2(char *buf, int len, ano_socket_t s)
char *str = sgets(buf, len, s);
if (!str || str == (char *) -1)
- return str;
+ return NULL;
str = buf + strlen(buf) - 1;
if (*str == '\n')
*str-- = 0;
diff --git a/version.log b/version.log
index 3dcfa4208..15317acbe 100644
--- a/version.log
+++ b/version.log
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="14"
VERSION_EXTRA=""
-VERSION_BUILD="1103"
+VERSION_BUILD="1104"
# $Log$
#
+# BUILD : 1.7.14 (1104)
+# BUGS : 557
+# NOTES : new fix to make the last fix work ;-p
+#
# BUILD : 1.7.14 (1103)
# BUGS : 557
# NOTES : Fixed very nasty typecast. GCC Hardened should now work.