Browse Source

bug_fix: reply_fifo name (as opposed to request_fifo) printed in a LOG

Jiri Kuthan 23 years ago
parent
commit
a50d55d373
1 changed files with 1 additions and 1 deletions
  1. 1 1
      fifo_server.c

+ 1 - 1
fifo_server.c

@@ -295,7 +295,7 @@ void fifo_reply( char *reply_fifo, char *reply_fmt, ... )
 	file_handle=open_reply_pipe(reply_fifo);
 	if (file_handle==0) {
 		LOG(L_ERR, "ERROR: fifo_reply: no reply pipe %s\n",
-			fifo);
+			reply_fifo);
 		return;
 	}
 retry: