Ignore:
Timestamp:
06/01/07 11:09:07 (5 years ago)
Author:
wd
Message:

Wow, a fully building ircd mode (so far). Some changes:

  • Updated LOTS of copyright notices.
  • Completed the split of channel and user modes
  • That core 'addon' is completely gone
  • Using hard/soft/post dependencies in what seems to me to be a good way.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ithildin/modules/ircd/commands/watch.c

    r804 r806  
    22 * watch.c: the WATCH command 
    33 *  
    4  * Copyright 2002 the Ithildin Project. 
     4 * Copyright 2002-2007 the Ithildin Project. 
    55 * See the COPYING file for more information on licensing and use. 
    66 * 
     
    7777        watch.table = create_hash_table(hashtable_size(ircd.hashes.client), 
    7878                offsetof(watch_t, nick), NICKLEN, 
    79                 HASH_FL_NOCASE|HASH_FL_STRING, "nickcmp"); 
    80     } 
     79                HASH_FL_NOCASE|HASH_FL_STRING, 
     80                (hashcmp_function_t)nickcmp); 
     81    } else 
     82        hash_change_cmpfunc(watch.table, (hashcmp_function_t)nickcmp); 
    8183 
    8284    add_isupport("WATCH", ISUPPORT_FL_PRIV, (char *)&watch.watchlim); 
Note: See TracChangeset for help on using the changeset viewer.