]> jfr.im git - solanum.git/blobdiff - ircd/cache.c
Change struct Dictionary(*) to rb_dictionary(_\1).
[solanum.git] / ircd / cache.c
index 3b26717039d8d822ecfe41549228644918b9ed84..f596dfa54ee7d5edff5e413a25518fa80fa673ec 100644 (file)
@@ -47,8 +47,8 @@ struct cacheline *emptyline = NULL;
 rb_dlink_list links_cache_list;
 char user_motd_changed[MAX_DATE_STRING];
 
-struct Dictionary *help_dict_oper = NULL;
-struct Dictionary *help_dict_user = NULL;
+rb_dictionary *help_dict_oper = NULL;
+rb_dictionary *help_dict_user = NULL;
 
 /* init_cache()
  *
@@ -237,7 +237,7 @@ load_help(void)
        struct dirent *ldirent= NULL;
        char filename[PATH_MAX];
        struct cachefile *cacheptr;
-       struct DictionaryIter iter;
+       rb_dictionary_iter iter;
 
 #if defined(S_ISLNK) && defined(HAVE_LSTAT)
        struct stat sb;