Ticket #137 (closed defect: fixed)

Opened 5 weeks ago

Last modified 5 weeks ago

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

Changed 5 weeks ago by ekilfoil

  • status changed from new to closed
  • resolution set to fixed
  • milestone changed from Unscheduled to Mangler 1.2

done in r605

Note: See TracTickets for help on using tickets.