diff options
| author | Jeff Garzik <[email protected]> | 2011-09-20 11:47:02 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2011-09-20 11:47:02 -0700 |
| commit | 700f9426921bac0f1d1a4ba31f26b8f569e2c32e (patch) | |
| tree | 3d8dada8aa92f91ef3f6cc97bd3f947e359dacc8 /src/net.cpp | |
| parent | Merge pull request #520 from tcatm/less-logging (diff) | |
| parent | SocketHandler thread can be detached (diff) | |
| download | discoin-700f9426921bac0f1d1a4ba31f26b8f569e2c32e.tar.xz discoin-700f9426921bac0f1d1a4ba31f26b8f569e2c32e.zip | |
Merge pull request #522 from sipa/minorfix
SocketHandler thread can be detached
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index 509d8905f..2e257a6ef 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1713,7 +1713,7 @@ void StartNode(void* parg) printf("Error: CreateThread(ThreadIRCSeed) failed\n"); // Send and receive from sockets, accept connections - CreateThread(ThreadSocketHandler, NULL, true); + CreateThread(ThreadSocketHandler, NULL); // Initiate outbound connections if (!CreateThread(ThreadOpenConnections, NULL)) |