* routines2.c: Fix two typos
authorMichael Hampton <io_error@uncensored.citadel.org>
Fri, 12 Mar 2004 19:35:13 +0000 (19:35 +0000)
committerMichael Hampton <io_error@uncensored.citadel.org>
Fri, 12 Mar 2004 19:35:13 +0000 (19:35 +0000)
citadel/ChangeLog
citadel/routines2.c

index 8ec9477fec5db8bb5a3c20eec8e0468517fca0f7..b7c2950a502de8789eaeb71ae3fb9b7643e15237 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 614.73  2004/03/12 19:35:13  error
+ * routines2.c: Fix two typos
+
  Revision 614.72  2004/03/12 19:32:09  error
  * routines2.c: Convert multiple functions to use new IPC code (almost done!)
 
@@ -5487,4 +5490,3 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import
-
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');