X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fcomp.c;h=75bbf86fd667e61c9b0f45702f6baae8e7bb3073;hp=159d7e76122e7b286e61210984de7157ed53e737;hb=6e9577f324bef90765a5edc02044eb111ec48072;hpb=cf1205b5cbea2f0cd6ea710ec16c637df85b647c diff --git a/uip/comp.c b/uip/comp.c index 159d7e7..75bbf86 100644 --- a/uip/comp.c +++ b/uip/comp.c @@ -31,6 +31,7 @@ static struct swit switches[] = { { NULL, 0 } }; +char *version=VERSION; int main(int argc, char **argv) @@ -100,7 +101,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 +112,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 +152,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"); }