Changeset 806 for trunk/ithildin/modules/ircd/commands/watch.c
- Timestamp:
- 06/01/07 11:09:07 (5 years ago)
- File:
-
- 1 edited
-
trunk/ithildin/modules/ircd/commands/watch.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ithildin/modules/ircd/commands/watch.c
r804 r806 2 2 * watch.c: the WATCH command 3 3 * 4 * Copyright 2002 the Ithildin Project.4 * Copyright 2002-2007 the Ithildin Project. 5 5 * See the COPYING file for more information on licensing and use. 6 6 * … … 77 77 watch.table = create_hash_table(hashtable_size(ircd.hashes.client), 78 78 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); 81 83 82 84 add_isupport("WATCH", ISUPPORT_FL_PRIV, (char *)&watch.watchlim);
Note: See TracChangeset
for help on using the changeset viewer.
