Email gateway obeys 'Reply-To:' in header.
[egate.git] / fml / fmlmem.c
index e4bec81..70b3e2c 100644 (file)
  * FML interpreter. Europagate, 1995
  *
  * $Log: fmlmem.c,v $
- * Revision 1.12  1995/05/16 09:39:34  adam
+ * Revision 1.13  1996/01/29 17:52:05  adam
+ * Minor change - removed unnecessary &.
+ *
+ * Revision 1.12  1995/05/16  09:39:34  adam
  * LICENSE.
  *
  * Revision 1.11  1995/03/02  10:18:48  adam
@@ -163,7 +166,7 @@ static struct fml_atom *atom_copy (Fml fml, struct fml_atom *a)
     a0 = a1 = atom_malloc (fml);
     while (a)
     {
-        memcpy (&a1->buf, &a->buf, FML_ATOM_BUF);
+        memcpy (a1->buf, a->buf, FML_ATOM_BUF);
         if (!a->next)
             break;
         a = a->next;