Changeset 730 for branches


Ignore:
Timestamp:
05/12/06 01:53:26 (6 years ago)
Author:
wd
Message:

Dumb bug w/ LIST_FOREACH. Let's try breaking when we add (duhhhh)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ithildin-1.1/modules/ircd/addons/acl.c

    r729 r730  
    9797                LIST_INSERT_BEFORE(ap2, ap, intlp); 
    9898                break; 
    99             } else if (LIST_NEXT(ap2, intlp) == NULL) 
     99            } else if (LIST_NEXT(ap2, intlp) == NULL) { 
    100100                LIST_INSERT_AFTER(ap2, ap, intlp); 
     101                break; 
     102            } 
    101103        } 
    102104    } 
Note: See TracChangeset for help on using the changeset viewer.