Ticket #137 (closed defect: fixed)
v3_userlist_update patch
| Reported by: | bobshaffer | Owned by: | ekilfoil |
|---|---|---|---|
| Priority: | major | Milestone: | Mangler 1.2 |
| Component: | libventrilo3 | Version: | 0.0 |
| Keywords: | Cc: |
Description
current svn trunk always sets the subtype to 1 (add). The following change seems to correct the problem:
Index: libventrilo3.c
===================================================================
--- libventrilo3.c (revision 589)
+++ libventrilo3.c (working copy)
@@ -4043,7 +4043,7 @@
memset(&ev, 0, sizeof(v3_event));
- if (ev.data.account.perms.account_id != 0)
+ if (account->perms.account_id)
ev.type = V3_EVENT_USERLIST_MODIFY;
else
ev.type = V3_EVENT_USERLIST_ADD;
Change History
Note: See
TracTickets for help on using
tickets.
