summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1997-10-21 22:51:21 +0000
committerJeremy Allison <jra@samba.org>1997-10-21 22:51:21 +0000
commit2d9645e99ba30a5cce4372ff80d1bd26c516ac34 (patch)
treedb6d391d9e619489919f00c90f6a68511a1af74b
parentbc2834c2cc7bda0c1e780d160a73c8b71bfe467f (diff)
downloadsamba-2d9645e99ba30a5cce4372ff80d1bd26c516ac34.tar.gz
WHATSNEW.txt: Updated for alpha3.
server.c: int16 -> uint16 fix for port comparisons in oplock code. Needed for Solaris. version.h: Updated to alpha3. Jeremy (jallison@whistle.com)
-rw-r--r--WHATSNEW.txt10
-rw-r--r--source/include/version.h2
-rw-r--r--source/smbd/server.c4
3 files changed, 12 insertions, 4 deletions
diff --git a/WHATSNEW.txt b/WHATSNEW.txt
index 69d6185e02a..53b02a63abd 100644
--- a/WHATSNEW.txt
+++ b/WHATSNEW.txt
@@ -1,10 +1,18 @@
- WHATS NEW IN 1.9.18alpha2 Oct 21st 1997
+ WHATS NEW IN 1.9.18alpha3 Oct 21st 1997
=======================================
This is NOT a production release of Samba code.
For production servers please run Samba 1.9.17p4
or later releases in the 1.9.17 series.
+This release is being made as alpha3, as an
+incorrect alpha2 was temporarily available from
+the Samba ftp site. As we have no way of knowing
+if some people downloaded this incorrect release
+the safest course seemed to be to increment the
+alpha release number as we wish there to be no
+confusion between releases.
+
This release contains some experimental features and
changes and is being made available so people can
test and provide feedback and patches for ongoing
diff --git a/source/include/version.h b/source/include/version.h
index 129c695d8b9..dae7bc77764 100644
--- a/source/include/version.h
+++ b/source/include/version.h
@@ -1 +1 @@
-#define VERSION "1.9.18alpha2"
+#define VERSION "1.9.18alpha3"
diff --git a/source/smbd/server.c b/source/smbd/server.c
index 68f2dca27cc..d67247481ff 100644
--- a/source/smbd/server.c
+++ b/source/smbd/server.c
@@ -2631,7 +2631,7 @@ address %x. Error was %s\n", htonl(INADDR_LOOPBACK), strerror(errno)));
static BOOL process_local_message(int sock, char *buffer, int buf_size)
{
int32 msg_len;
- int16 from_port;
+ uint16 from_port;
char *msg_start;
msg_len = IVAL(buffer,UDP_CMD_LEN_OFFSET);
@@ -2995,7 +2995,7 @@ to pid %d on port %d for dev = %x, inode = %x. Error was %s\n",
{
char op_break_reply[UDP_CMD_HEADER_LEN+OPLOCK_BREAK_MSG_LEN];
int32 reply_msg_len;
- int16 reply_from_port;
+ uint16 reply_from_port;
char *reply_msg_start;
if(receive_local_message(oplock_sock, op_break_reply, sizeof(op_break_reply),