From fa37193c83f82784e826b8477ee7d4a4cd96d7cf Mon Sep 17 00:00:00 2001 From: Luke Bratch Date: Sun, 16 Jun 2019 23:29:34 +0100 Subject: Correctly return success when handling new replay modes. --- TODO | 4 ---- functions.c | 2 ++ 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/TODO b/TODO index e58b82c..b1ff47d 100644 --- a/TODO +++ b/TODO @@ -1,6 +1,2 @@ Add various auto replay options: - All logs since the current client last disconnected (track clients with some special token the client auto sends on connect) - -Might need to #include in blabouncer.c to make some operating systems and/or compilers happy. - -Don't say "Unable to read replay log file!" just because there was nothing to replay. diff --git a/functions.c b/functions.c index edb77e7..1efb2c1 100644 --- a/functions.c +++ b/functions.c @@ -889,6 +889,7 @@ int doautoreplay(int sourcefd, struct client *clients, struct settings *settings debugprint(DEBUG_SOME, "doautoreplay(): doreplay() returned 0, returning 0 to caller...\n"); return 0; } + return 1; } // If replaymode = "lastchange" then send whatever happened since the last client registration or disconnection @@ -898,6 +899,7 @@ int doautoreplay(int sourcefd, struct client *clients, struct settings *settings debugprint(DEBUG_SOME, "doautoreplay(): doreplay() returned 0, returning 0 to caller...\n"); return 0; } + return 1; } // We shouldn't get here -- cgit v1.2.3