diff options
author | unknown <kent@mysql.com/kent-amd64.(none)> | 2008-02-26 18:18:03 +0100 |
---|---|---|
committer | unknown <kent@mysql.com/kent-amd64.(none)> | 2008-02-26 18:18:03 +0100 |
commit | b93e09a27edaa30f1852df1d11d1a9b49fcf460a (patch) | |
tree | f935ee8ca9ec36da10095f604dc4f1d86d5213c1 /ndb | |
parent | e6ad8adb47a737e200f20c3a45562c03bbaa586e (diff) | |
download | mariadb-git-b93e09a27edaa30f1852df1d11d1a9b49fcf460a.tar.gz |
configure.in:
Corrected calculation of version id, incorrect last two digits if < 10
Keep "sp1" or "a" in MYSQL_NO_DASH_VERSION, to set correct version in
RPM spec file
Added MYSQL_NUMERIC_VERSION that is like MYSQL_NO_DASH_VERSION before
Added clear doc how the different version variables differ
SocketServer.cpp:
Corrected typo in debug error message
ndb/src/common/util/SocketServer.cpp:
Corrected typo in debug error message
configure.in:
Corrected calculation of version id, incorrect last two digits if < 10
Keep "sp1" or "a" in MYSQL_NO_DASH_VERSION, to set correct version in
RPM spec file
Added MYSQL_NUMERIC_VERSION that is like MYSQL_NO_DASH_VERSION before
Added clear doc how the different version variables differ
Diffstat (limited to 'ndb')
-rw-r--r-- | ndb/src/common/util/SocketServer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/src/common/util/SocketServer.cpp b/ndb/src/common/util/SocketServer.cpp index 755764c7700..3486567e33d 100644 --- a/ndb/src/common/util/SocketServer.cpp +++ b/ndb/src/common/util/SocketServer.cpp @@ -111,7 +111,7 @@ SocketServer::setup(SocketServer::Service * service, const int on = 1; if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (const char*)&on, sizeof(on)) == -1) { - DBUG_PRINT("error",("getsockopt() - %d - %s", + DBUG_PRINT("error",("setsockopt() - %d - %s", errno, strerror(errno))); NDB_CLOSE_SOCKET(sock); DBUG_RETURN(false); |