Skip to content
Snippets Groups Projects
Commit 11f99dac authored by rswindell's avatar rswindell
Browse files

Removed extraneous LOG_DEBUG line.

parent 1ae3ac48
No related branches found
No related tags found
No related merge requests found
...@@ -1566,7 +1566,7 @@ int sbbs_t::external(const char* cmdline, long mode, const char* startup_dir) ...@@ -1566,7 +1566,7 @@ int sbbs_t::external(const char* cmdline, long mode, const char* startup_dir)
} }
if(!(mode&EX_INR) && input_thread_running) { if(!(mode&EX_INR) && input_thread_running) {
lprintf(LOG_DEBUG,"%s %d",__FILE__,__LINE__); lprintf(LOG_DEBUG,"Locking input thread mutex");
if(pthread_mutex_lock(&input_thread_mutex)!=0) if(pthread_mutex_lock(&input_thread_mutex)!=0)
errormsg(WHERE,ERR_LOCK,"input_thread_mutex",0); errormsg(WHERE,ERR_LOCK,"input_thread_mutex",0);
input_thread_mutex_locked=true; input_thread_mutex_locked=true;
...@@ -1606,7 +1606,6 @@ int sbbs_t::external(const char* cmdline, long mode, const char* startup_dir) ...@@ -1606,7 +1606,6 @@ int sbbs_t::external(const char* cmdline, long mode, const char* startup_dir)
out_pipe[0]=in_pipe[1]; out_pipe[0]=in_pipe[1];
} }
else { else {
lprintf(LOG_DEBUG,"%s %d",__FILE__,__LINE__);
if(mode&EX_INR) if(mode&EX_INR)
if(pipe(in_pipe)!=0) { if(pipe(in_pipe)!=0) {
errormsg(WHERE,ERR_CREATE,"in_pipe",0); errormsg(WHERE,ERR_CREATE,"in_pipe",0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment