Skip to content
Snippets Groups Projects
Commit 368f69bb authored by rswindell's avatar rswindell
Browse files

Fixed bug (assigning NULL instead of INVALID_SOCKET).

parent f94923f4
No related branches found
No related tags found
No related merge requests found
......@@ -372,7 +372,7 @@ int sbbs_t::exec_function(csi_t *csi)
}
if(ch==16) { /* Ctrl-P Private node-node comm */
lncntr=0; /* defeat pause */
spy_socket[i-1]=NULL; /* disable spy output */
spy_socket[i-1]=INVALID_SOCKET; /* disable spy output */
nodesync(); /* read waiting messages */
nodemsg(); /* send a message */
spy_socket[i-1]=client_socket; /* enable spy output */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment