]> diplodocus.org Git - nmh/blobdiff - uip/ali.c
Improve this documentation a bit.
[nmh] / uip / ali.c
index 1c75644bf088402a33111bc1a810a62b35627b91..a1b642cbb9e177923decb397eb7f0bf95badc0b1 100644 (file)
--- a/uip/ali.c
+++ b/uip/ali.c
@@ -9,6 +9,7 @@
 #include <h/addrsbr.h>
 #include <h/aliasbr.h>
 #include <h/mts.h>
+#include "h/done.h"
 #include <h/utils.h>
 
 #define ALI_SWITCHES \
@@ -119,7 +120,7 @@ main (int argc, char **argv)
            for (ap = brkstring(dp = mh_xstrdup(cp), " ", "\n"); ap && *ap; ap++)
                if ((i = alias (*ap)) != AK_OK)
                    adios (NULL, "aliasing error in %s - %s", *ap, akerror (i));
-            mh_xfree(dp);
+            free(dp);
        }
        alias (AliasFile);
     }
@@ -236,5 +237,5 @@ print_usr (char *s, bool list)
 
     print_aka (vp ? vp : s, list, 0);
 
-    mh_xfree(vp);
+    free(vp);
 }