]> diplodocus.org Git - nmh/blob - sbr/showfile.c
It looks like the first test fails on Solaris because it
[nmh] / sbr / showfile.c
1
2 /*
3 * showfile.c -- invoke the `lproc' command
4 *
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
8 */
9
10 #include <h/mh.h>
11
12
13 int
14 showfile (char **arg, char *file)
15 {
16 pid_t pid;
17 int isdraft, vecp;
18 char **vec, *program;
19
20 context_save(); /* save the context file */
21 fflush(stdout);
22
23 /*
24 * If you have your lproc listed as "mhl",
25 * then really invoked the mhlproc instead
26 * (which is usually mhl anyway).
27 */
28 if (!strcmp (r1bindex (lproc, '/'), "mhl"))
29 lproc = mhlproc;
30
31 switch (pid = fork()) {
32 case -1:
33 /* fork error */
34 advise ("fork", "unable to");
35 return 1;
36
37 case 0:
38 /* child */
39 vec = argsplit(lproc, &program, &vecp);
40 isdraft = 1;
41 if (arg) {
42 while (*arg) {
43 if (**arg != '-')
44 isdraft = 0;
45 vec[vecp++] = *arg++;
46 }
47 }
48 if (isdraft) {
49 if (!strcmp (vec[0], "show"))
50 vec[vecp++] = "-file";
51 vec[vecp++] = file;
52 }
53 vec[vecp] = NULL;
54
55 execvp (program, vec);
56 fprintf (stderr, "unable to exec ");
57 perror (lproc);
58 _exit (-1);
59
60 default:
61 /* parent */
62 return (pidwait (pid, -1) & 0377 ? 1 : 0);
63 }
64
65 return 1; /* NOT REACHED */
66 }