This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Undernet IRC Server Source Code.".

The branch, u2_10_12_branch has been updated
       via  a480e001508c6d0aedc2cb61308d1e6b9a6befdf (commit)
       via  d2942b64403783b833166b1d5c80b0fccab2ec23 (commit)
      from  f4e0d720a62f9b9fb6f00f4ac46ffb1a4bf60974 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a480e001508c6d0aedc2cb61308d1e6b9a6befdf
Author: Michael Poole <[email protected]>
Date:   Tue May 16 23:06:46 2017 -0400

    ircd/test/Makefile.in: Use the user-specified LDFLAGS.

diff --git a/ircd/test/Makefile.in b/ircd/test/Makefile.in
index a87368b..9831ecc 100644
--- a/ircd/test/Makefile.in
+++ b/ircd/test/Makefile.in
@@ -3,7 +3,7 @@ srcdir = @srcdir@
 VPATH = @srcdir@
 CPPFLAGS = -I${top_srcdir}/include -I../..
 CFLAGS   = -g -Wall
-LDFLAGS  =
+LDFLAGS  = @LDFLAGS@
 CC = @CC@
 
 TESTPROGS = \
commit d2942b64403783b833166b1d5c80b0fccab2ec23
Author: Michael Poole <[email protected]>
Date:   Tue May 16 23:06:26 2017 -0400

    iptobase64(): Test ii before indexing with it.

diff --git a/ircd/numnicks.c b/ircd/numnicks.c
index 66e4321..e7e54c5 100644
--- a/ircd/numnicks.c
+++ b/ircd/numnicks.c
@@ -458,7 +458,7 @@ const char* iptobase64(char* buf, const struct irc_in_addr* 
addr, unsigned int c
 
     assert(count >= 25);
     /* Can start by printing out the leading non-zero parts. */
-    for (ii = 0; (addr->in6_16[ii]) && (ii < 8); ++ii) {
+    for (ii = 0; (ii < 8) && (addr->in6_16[ii]); ++ii) {
       inttobase64(output, ntohs(addr->in6_16[ii]), 3);
       output += 3;
     }
-----------------------------------------------------------------------

Summary of changes:
 ircd/numnicks.c       | 2 +-
 ircd/test/Makefile.in | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Undernet IRC Server Source Code.
_______________________________________________
Patches mailing list
[email protected]
http://undernet.sbg.org/mailman/listinfo/patches

Reply via email to