diff options
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | radsecproxy.c | 6 |
2 files changed, 7 insertions, 5 deletions
@@ -1,10 +1,10 @@ CFLAGS = -g -Wall -pedantic -pthread LDFLAGS = -lssl -OBJ = util.o +OBJ = util.o radsecproxy.o all: radsecproxy -radsecproxy: $(OBJ) - $(CC) $(CFLAGS) $(OBJ) $(LDFLAGS) -o radsecproxy radsecproxy.c +radsecproxy: $(OBJ) radsecproxy.o + $(CC) $(CFLAGS) $(OBJ) $(LDFLAGS) -o radsecproxy clean: rm -f $(OBJ) radsecproxy diff --git a/radsecproxy.c b/radsecproxy.c index 30b4227..c2c2368 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -1294,9 +1294,11 @@ void *clientwr(void *arg) { printf("clientwr: got new request\n"); server->newrq = 0; } - } + } else + server->newrq = 0; pthread_mutex_unlock(&server->newrq_mutex); - + + printf("clientwr: processing request queue\n"); for (i = 0; i < MAX_REQUESTS; i++) { pthread_mutex_lock(&server->newrq_mutex); while (!server->requests[i].buf && i < MAX_REQUESTS) |