Removed the -width option from ap and dp. Always print the whole string now.
[mmh] / sbr / showfile.c
index 3f23801..594b269 100644 (file)
@@ -24,10 +24,10 @@ showfile(char **arg, char *file)
        ** then really invoked the mhlproc instead
        ** (which is usually mhl anyway).
        */
-       if (!strcmp(mhbasename(lproc), "mhl"))
+       if (strcmp(mhbasename(lproc), "mhl")==0)
                lproc = mhlproc;
 
-       switch (pid = vfork()) {
+       switch (pid = fork()) {
        case -1:
                /* fork error */
                advise("fork", "unable to");
@@ -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;
                }