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 b3e7a2bbceb4d17cdab3ce7579fcaac2aa77868d (commit)
from b6f0b0f286a14781eb07d8aa08c9e500eefb8082 (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 b3e7a2bbceb4d17cdab3ce7579fcaac2aa77868d
Author: Kevin L. Mitchell <[email protected]>
Date: Wed Aug 17 18:54:46 2011 -0500
Fix minor issue in IsLocOp() test
diff --git a/ChangeLog b/ChangeLog
index 73d3d07..edc2416 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-08-17 Kevin L. Mitchell <[email protected]>
+
+ * include/client.h: Fix minor issue in IsLocOp() test
+
+ * include/patchlevel.h (PATCHLEVEL): bump patchlevel to 14
+
2011-05-15 Michael Poole <[email protected]>
* ircd/s_auth.c (iauth_cmd_done_account): Do not copy the
diff --git a/include/client.h b/include/client.h
index 7110dd0..26f0481 100644
--- a/include/client.h
+++ b/include/client.h
@@ -556,7 +556,7 @@ struct Client {
/** Return non-zero if the client caused a net.burst. */
#define IsJunction(x) HasFlag(x, FLAG_JUNCTION)
/** Return non-zero if the client has set mode +O (local operator) locally. */
-#define IsLocOp(x) (MyUser(x) && HasFlag(x, FLAG_LOCOP))
+#define IsLocOp(x) (MyConnect(x) && HasFlag(x, FLAG_LOCOP))
/** Return non-zero if the client has set mode +o (global operator). */
#define IsOper(x) HasFlag(x, FLAG_OPER)
/** Return non-zero if the client has an active UDP ping request. */
diff --git a/include/patchlevel.h b/include/patchlevel.h
index dcdffbe..df0484b 100644
--- a/include/patchlevel.h
+++ b/include/patchlevel.h
@@ -18,7 +18,7 @@
* $Id$
*
*/
-#define PATCHLEVEL "13"
+#define PATCHLEVEL "14"
#define RELEASE ".12."
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 6 ++++++
include/client.h | 2 +-
include/patchlevel.h | 2 +-
3 files changed, 8 insertions(+), 2 deletions(-)
hooks/post-receive
--
Undernet IRC Server Source Code.
_______________________________________________
Patches mailing list
[email protected]
http://undernet.sbg.org/mailman/listinfo/patches