We have only numeric timezone support (e.g. +0200) from now on.
[mmh] / uip / mhbuild.c
index 3432ccc..739aa46 100644 (file)
 #include <h/mhcachesbr.h>
 #include <h/utils.h>
 
-#ifdef TIME_WITH_SYS_TIME
+#ifdef HAVE_SYS_TIME_H
 # include <sys/time.h>
-# include <time.h>
-#else
-# ifdef TM_IN_SYS_TIME
-#  include <sys/time.h>
-# else
-#  include <time.h>
-# endif
-#endif
-
-#ifdef HAVE_SYS_WAIT_H
-# include <sys/wait.h>
 #endif
+#include <time.h>
 
 static struct swit switches[] = {
 #define CHECKSW  0
@@ -1058,8 +1048,14 @@ use_forw:
                struct msgs *mp;
 
                if (ci->ci_magic) {
+                       int i;
+
                        ap = brkstring(ci->ci_magic, " ", "\n");
-                       copyip(ap, arguments, MAXARGS);
+                       for (i=0; ap[i] && i<MAXARGS-1; i++) {
+                               arguments[i] = ap[i];
+                       }
+                       arguments[i] = NULL;
+
                } else {
                        arguments[0] = seq_cur;
                        arguments[1] = NULL;