mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=10681
This commit is contained in:
parent
be448fafbd
commit
05dde44e3e
|
@ -7676,3 +7676,10 @@ David 18 July 2006
|
|||
sea/
|
||||
insecure.sh
|
||||
secure.sh
|
||||
|
||||
Charlie 18 July 2006
|
||||
- If bind fails, display errno on non_Win32 systems instead of -1.
|
||||
|
||||
client/
|
||||
gui_rpc_server.C
|
||||
|
|
@ -27,6 +27,7 @@
|
|||
#include <stdio.h>
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#include <cerrno>
|
||||
#endif
|
||||
#ifdef HAVE_SYS_SOCKET_H
|
||||
#include <sys/socket.h>
|
||||
|
@ -198,6 +199,9 @@ int GUI_RPC_CONN_SET::init() {
|
|||
|
||||
retval = bind(lsock, (const sockaddr*)(&addr), (boinc_socklen_t)sizeof(addr));
|
||||
if (retval) {
|
||||
#ifndef _WIN32
|
||||
retval = errno; // Display the real error code
|
||||
#endif
|
||||
msg_printf(NULL, MSG_ERROR, "GUI RPC bind failed: %d", retval);
|
||||
boinc_close_socket(lsock);
|
||||
lsock = -1;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Localized versions of Info.plist keys */
|
||||
|
||||
CFBundleName = "BOINC";
|
||||
CFBundleShortVersionString = "BOINC version 5.5.4";
|
||||
CFBundleGetInfoString = "BOINC version 5.5.4, Copyright 2006 University of California.";
|
||||
CFBundleShortVersionString = "BOINC version 5.7.0";
|
||||
CFBundleGetInfoString = "BOINC version 5.7.0, Copyright 2006 University of California.";
|
||||
|
|
|
@ -17,6 +17,6 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>BNC!</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.5.4</string>
|
||||
<string>5.7.0</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
|
@ -15,6 +15,6 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.5.4</string>
|
||||
<string>5.7.0</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
|
@ -15,6 +15,6 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.5.4</string>
|
||||
<string>5.7.0</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.5.4</string>
|
||||
<string>5.7.0</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>BOINC_Saver_ModuleView</string>
|
||||
</dict>
|
||||
|
|
|
@ -15,6 +15,6 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>5.5.4</string>
|
||||
<string>5.7.0</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
|
Loading…
Reference in New Issue