]> code.citadel.org Git - citadel.git/commitdiff
corrected a syntax error
authorArt Cancro <ajc@citadel.org>
Wed, 4 Nov 1998 15:58:42 +0000 (15:58 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 4 Nov 1998 15:58:42 +0000 (15:58 +0000)
citadel/messages.c

index c927fed902f9451f63d07ea8a976c2db39e04dd6..bdc4b6912dc7c747fa6855b2046df33c55e03f9f 100644 (file)
@@ -281,7 +281,7 @@ void citedit(FILE *fp, long int base_pos)
                                for (b=0; b<strlen(wordbuf); ++b)
                                   if (wordbuf[b]==32) {
                                        wordbuf[b]=0;
-                                       ADD_WORD(textlist,wordbuf);
+                                       add_word(textlist,wordbuf);
                                        strcpy(wordbuf,&wordbuf[b+1]);
                                        b=0;
                                        }