myserver-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[myserver-commit] [SCM] GNU MyServer branch, master, updated. 0_9_2-81-g


From: Giuseppe Scrivano
Subject: [myserver-commit] [SCM] GNU MyServer branch, master, updated. 0_9_2-81-g36f9ed4
Date: Fri, 26 Mar 2010 16:15:21 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU MyServer".

The branch, master has been updated
       via  36f9ed4aa1d224808d4f290ff4cf1e62733ffe3c (commit)
      from  f936d2902dbe22547ba185af9d5d2a52e0c9bba0 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------


commit 36f9ed4aa1d224808d4f290ff4cf1e62733ffe3c
Author: Giuseppe Scrivano <address@hidden>
Date:   Fri Mar 26 17:10:20 2010 +0100

    Fix the `TestForkServer::testExecuteProcess' test case under 64 bits 
systems.
    
    An u_long is not 4 bytes long under 64 bits systems, use int instead.

diff --git a/myserver/src/base/process/fork_server.cpp 
b/myserver/src/base/process/fork_server.cpp
index 6285a07..d3bd03a 100644
--- a/myserver/src/base/process/fork_server.cpp
+++ b/myserver/src/base/process/fork_server.cpp
@@ -97,7 +97,7 @@ int ForkServer::readInt (Socket *sock, int *dest)
  */
 int ForkServer::readString (Socket *sock, char **out)
 {
-  u_long len;
+  int len;
   u_long nbr;
 
   if (sock->read ((char*) &len, 4, &nbr) || nbr < 4)

-----------------------------------------------------------------------

Summary of changes:
 myserver/src/base/process/fork_server.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU MyServer




reply via email to

[Prev in Thread] Current Thread [Next in Thread]