Replace getcpy() and strdup() with mh_xstrdup()
[mmh] / uip / comp.c
index 159d7e7..c34ce43 100644 (file)
@@ -100,7 +100,7 @@ main(int argc, char **argv)
                        if (folder) {
                                adios(EX_USAGE, NULL, "only one folder at a time!");
                        } else {
-                               folder = getcpy(expandfol(cp));
+                               folder = mh_xstrdup(expandfol(cp));
                        }
                } else {
                        if (msg) {
@@ -111,7 +111,7 @@ main(int argc, char **argv)
                }
        }
 
-       cwd = getcpy(pwd());
+       cwd = mh_xstrdup(pwd());
 
        if (form && (folder || msg)) {
                adios(EX_USAGE, NULL, "can't mix forms and folders/msgs");
@@ -151,7 +151,7 @@ main(int argc, char **argv)
                if (mp->numsel > 1) {
                        adios(EX_USAGE, NULL, "only one message at a time!");
                }
-               if ((in = open(form = getcpy(m_name(mp->lowsel)),
+               if ((in = open(form = mh_xstrdup(m_name(mp->lowsel)),
                                O_RDONLY)) == NOTOK) {
                        adios(EX_IOERR, form, "unable to open message");
                }