]> code.citadel.org Git - citadel.git/blobdiff - citadel/routines2.c
* routines2.c: Fix two typos
[citadel.git] / citadel / routines2.c
index 23b4a057d707b5ec10a5641a56a17a4054529356..6b280dd0fd5d85f058e348530cbc58da3960e4c3 100644 (file)
@@ -1148,7 +1148,7 @@ void do_ignet_configuration(CtdlIPC *ipc) {
        char *listing = NULL;
        int r;
 
-       r = CtdlIPCGetSystemConfigByType(ipc, IGNETCFG, listing, buf);
+       r = CtdlIPCGetSystemConfigByType(ipc, IGNETCFG, &listing, buf);
        if (r / 100 == 1) while (*listing && strlen(listing)) {
                extract_token(buf, listing, 0, '\n');
                remove_token(listing, 0, '\n');
@@ -1270,7 +1270,7 @@ void do_filterlist_configuration(CtdlIPC *ipc)
        char *listing = NULL;
        int r;
 
-       r = CtdlIPCGetSystemConfigByType(ipc, FILTERLIST, listing, buf);
+       r = CtdlIPCGetSystemConfigByType(ipc, FILTERLIST, &listing, buf);
        if (r / 100 == 1) while (*listing && strlen(listing)) {
                extract_token(buf, listing, 0, '\n');
                remove_token(listing, 0, '\n');