Hello ports,

small update to bring ngircd to version 26.1.
Tested on amd64.


Index: Makefile
===================================================================
RCS file: /cvs/ports/net/ngircd/Makefile,v
retrieving revision 1.20
diff -u -p -u -p -r1.20 Makefile
--- Makefile    26 Jun 2020 10:32:15 -0000      1.20
+++ Makefile    3 Jan 2021 11:09:43 -0000
@@ -2,7 +2,7 @@
 
 COMMENT =      lightweight irc server
 
-DISTNAME =     ngircd-26
+DISTNAME =     ngircd-26.1
 
 CATEGORIES =   net
 
Index: distinfo
===================================================================
RCS file: /cvs/ports/net/ngircd/distinfo,v
retrieving revision 1.12
diff -u -p -u -p -r1.12 distinfo
--- distinfo    26 Jun 2020 10:32:15 -0000      1.12
+++ distinfo    3 Jan 2021 11:09:43 -0000
@@ -1,2 +1,2 @@
-SHA256 (ngircd-26.tar.gz) = EoRBJWxIn2emPG2EWbl/AQaVlSbM1wtRProlCN+6xlE=
-SIZE (ngircd-26.tar.gz) = 565579
+SHA256 (ngircd-26.1.tar.gz) = QeGxxjJsZnpqB3mcNBdbVAbnjsOxm0t4AEbI0/UycG4=
+SIZE (ngircd-26.1.tar.gz) = 562938
Index: patches/patch-src_ngircd_conf_c
===================================================================
RCS file: /cvs/ports/net/ngircd/patches/patch-src_ngircd_conf_c,v
retrieving revision 1.7
diff -u -p -u -p -r1.7 patch-src_ngircd_conf_c
--- patches/patch-src_ngircd_conf_c     26 Jun 2020 10:32:15 -0000      1.7
+++ patches/patch-src_ngircd_conf_c     3 Jan 2021 11:09:43 -0000
@@ -6,7 +6,7 @@ Index: src/ngircd/conf.c
        printf("  MaxConnectionsIP = %d\n", Conf_MaxConnectionsIP);
        printf("  MaxJoins = %d\n", Conf_MaxJoins > 0 ? Conf_MaxJoins : -1);
        printf("  MaxNickLength = %u\n", Conf_MaxNickLength - 1);
--      printf("  MaxPenaltyTime = %ld\n", Conf_MaxPenaltyTime);
+-      printf("  MaxPenaltyTime = %ld\n", (long)Conf_MaxPenaltyTime);
 +      printf("  MaxPenaltyTime = %lld\n", (long long)Conf_MaxPenaltyTime);
        printf("  MaxListSize = %d\n", Conf_MaxListSize);
        printf("  PingTimeout = %d\n", Conf_PingTimeout);

Reply via email to