From 165cb674c689b1c779a357cd20467844c855e93e Mon Sep 17 00:00:00 2001 From: Luke Bratch Date: Thu, 18 Jul 2019 21:37:51 +0100 Subject: Release version 0.1! Also add version information (client welcome message, -v, and --version). --- message.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'message.c') diff --git a/message.c b/message.c index 3e9f15c..4505ee1 100644 --- a/message.c +++ b/message.c @@ -855,7 +855,7 @@ int processclientmessage(SSL *server_ssl, char *str, struct client *clients, int } // Send our own greeting message - snprintf(outgoingmsg, MAXDATASIZE, "NOTICE %s :Welcome to blabouncer!", ircdstate->ircnick); + snprintf(outgoingmsg, MAXDATASIZE, "NOTICE %s :Welcome to blabouncer version %s!", ircdstate->ircnick, VERSION); sendtoclient(sourcefd, outgoingmsg, clients, settings, 0); snprintf(outgoingmsg, MAXDATASIZE, "NOTICE %s :Blabouncer commands are all prefixed with BLABOUNCER which you can usually send using \"/QUOTE BLABOUNCER\"", ircdstate->ircnick); sendtoclient(sourcefd, outgoingmsg, clients, settings, 0); -- cgit v1.2.3