X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fmf.c;h=44dab8a26b90f34d5ffa0dc08534755ee7e5f1fc;hp=518a184dd37f40f7d8d8e1c36fb635311a3ffc6d;hb=9a33ff618b5901a3af815650d4b84d39ee96e529;hpb=8f0c973e6cfebb193010714453f70f55ceae5dd7 diff --git a/sbr/mf.c b/sbr/mf.c index 518a184..44dab8a 100644 --- a/sbr/mf.c +++ b/sbr/mf.c @@ -18,7 +18,6 @@ * static prototypes */ static char *getcpy (char *); -static char *add (char *, char *); static void compress (char *, char *); static int isat (char *); static int parse_address (void); @@ -49,20 +48,6 @@ getcpy (char *s) } -static char * -add (char *s1, char *s2) -{ - register char *p; - - if (!s2) - return getcpy (s1); - - p = mh_xmalloc ((size_t) (strlen (s1) + strlen (s2) + 2)); - sprintf (p, "%s%s", s2, s1); - free (s2); - return p; -} - int isfrom(char *string) {