From 315f2ba4a9fb51bdf54f99c48eae4345d2dafbd8 Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Mon, 4 Jan 2021 13:23:00 +0100 Subject: [PATCH] Mention the FAQ URL if a link is rejected due to incorrect clock. --- src/modules/protoctl.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/modules/protoctl.c b/src/modules/protoctl.c index 0b765b53f..c1b3c4eda 100644 --- a/src/modules/protoctl.c +++ b/src/modules/protoctl.c @@ -343,9 +343,9 @@ CMD_FUNC(cmd_protoctl) (long long)(TStime() - t)); snprintf(msg, sizeof(msg), "Rejecting link %s: our clock is %lld seconds ahead. " - "Correct time is very important in IRC. Please " - "verify the clock on both %s (them) and %s (us), " - "fix it and then try linking again", + "Please verify the clock on both %s (them) and %s (us). " + "Correct time is very important for IRC servers, " + "see https://www.unrealircd.org/docs/FAQ#fix-your-clock", get_client_name(client, TRUE), (long long)(TStime() - t), client->name, me.name); @@ -359,9 +359,9 @@ CMD_FUNC(cmd_protoctl) (long long)(t - TStime())); snprintf(msg, sizeof(msg), "Rejecting link %s: our clock is %lld seconds behind. " - "Correct time is very important in IRC. Please " - "verify the clock on both %s (them) and %s (us), " - "fix it and then try linking again", + "Please verify the clock on both %s (them) and %s (us). " + "Correct time is very important for IRC servers, " + "see https://www.unrealircd.org/docs/FAQ#fix-your-clock", get_client_name(client, TRUE), (long long)(t - TStime()), client->name, me.name);