X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fshowfile.c;h=594b269f2cbc8375f2acd220d0be871d43c18850;hb=dee26acad9bca6aec7dca5c428b07a386909081b;hp=c0d3608bee79afa819c4f0530695a88440081715;hpb=714b5c530ece27ea2835a313013f5b770163403c;p=mmh diff --git a/sbr/showfile.c b/sbr/showfile.c index c0d3608..594b269 100644 --- a/sbr/showfile.c +++ b/sbr/showfile.c @@ -24,10 +24,10 @@ showfile(char **arg, char *file) ** then really invoked the mhlproc instead ** (which is usually mhl anyway). */ - if (!strcmp(r1bindex(lproc, '/'), "mhl")) + if (strcmp(mhbasename(lproc), "mhl")==0) lproc = mhlproc; - switch (pid = vfork()) { + switch (pid = fork()) { case -1: /* fork error */ advise("fork", "unable to"); @@ -36,7 +36,7 @@ showfile(char **arg, char *file) case 0: /* child */ vecp = 0; - vec[vecp++] = r1bindex(lproc, '/'); + vec[vecp++] = mhbasename(lproc); isdraft = 1; if (arg) { while (*arg) { @@ -46,7 +46,7 @@ showfile(char **arg, char *file) } } if (isdraft) { - if (!strcmp(vec[0], "show")) + if (strcmp(vec[0], "show")==0) vec[vecp++] = "-file"; vec[vecp++] = file; }