X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmhmail.c;h=ebe8b7647155de8d584cd277971020dc704458f3;hb=6c75e2f0f00732488aa03b967713d95037edd895;hp=c7a7afafc53b341f72b488a5ed91ab5f18c62732;hpb=714b5c530ece27ea2835a313013f5b770163403c;p=mmh diff --git a/uip/mhmail.c b/uip/mhmail.c index c7a7afa..ebe8b76 100644 --- a/uip/mhmail.c +++ b/uip/mhmail.c @@ -54,7 +54,7 @@ main(int argc, char **argv) #ifdef LOCALE setlocale(LC_ALL, ""); #endif - invo_name = r1bindex(argv[0], '/'); + invo_name = mhbasename(argv[0]); /* foil search of user profile/context */ if (context_foil(NULL) == -1) @@ -62,7 +62,7 @@ main(int argc, char **argv) /* If no arguments, just incorporate new mail */ if (argc == 1) { - execlp(incproc, r1bindex(incproc, '/'), NULL); + execlp(incproc, mhbasename(incproc), NULL); adios(incproc, "unable to exec"); } @@ -135,7 +135,7 @@ main(int argc, char **argv) fprintf(out, "%sTo: %s\n", resent ? "Resent-" : "", tolist); if (cclist) - fprintf(out, "%scc: %s\n", resent ? "Resent-" : "", cclist); + fprintf(out, "%sCc: %s\n", resent ? "Resent-" : "", cclist); if (subject) fprintf(out, "%sSubject: %s\n", resent ? "Resent-" : "", subject); if (from) @@ -160,7 +160,7 @@ main(int argc, char **argv) fclose(out); nvec = 0; - vec[nvec++] = r1bindex(postproc, '/'); + vec[nvec++] = mhbasename(postproc); vec[nvec++] = tmpfil; if (resent) vec[nvec++] = "-dist";