]> code.citadel.org Git - citadel.git/commitdiff
* Fixed a path problem when calling netmailer from mailinglist.c
authorArt Cancro <ajc@citadel.org>
Mon, 24 Jul 2000 00:39:13 +0000 (00:39 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 24 Jul 2000 00:39:13 +0000 (00:39 +0000)
citadel/ChangeLog
citadel/mailinglist.c

index 231ebbe5f3615b819d7272d9b3a222bcc53ae101..659c3a5a5f96715453121c488db1f78e7af79e18 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 572.19  2000/07/24 00:39:13  ajc
+ * Fixed a path problem when calling netmailer from mailinglist.c
+
  Revision 572.18  2000/07/22 03:44:17  ajc
  * Prepared infrastructure for the networker rewrite
 
@@ -1957,4 +1960,3 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * Initial CVS import 
-
index 876281a24966ad836e5d81adca02e07996eb1458..4c5112fcd032aedaadf6d8f9507087860a526377 100644 (file)
@@ -149,7 +149,7 @@ int main(void)
                in_header = 0;
                fclose(nm);
                if (is_good) {
-                   sprintf(mailcmd, "exec netmailer %s mlist", tempfile);
+                   sprintf(mailcmd, "exec ./netmailer %s mlist", tempfile);
                    system(mailcmd);
                    is_good = 0;
                }