wrong type for argv
authorEdward Wang <edward@ucbvax.Berkeley.EDU>
Sat, 18 Jun 1988 07:47:28 +0000 (23:47 -0800)
committerEdward Wang <edward@ucbvax.Berkeley.EDU>
Sat, 18 Jun 1988 07:47:28 +0000 (23:47 -0800)
SCCS-vsn: usr.bin/mail/popen.c 5.6

usr/src/usr.bin/mail/popen.c

index fcdfc12..07b95c1 100644 (file)
@@ -11,7 +11,7 @@
  */
 
 #ifdef notdef
  */
 
 #ifdef notdef
-static char sccsid[] = "@(#)popen.c    5.5 (Berkeley) %G%";
+static char sccsid[] = "@(#)popen.c    5.6 (Berkeley) %G%";
 #endif /* notdef */
 
 #include "rcv.h"
 #endif /* notdef */
 
 #include "rcv.h"
@@ -34,7 +34,7 @@ char  *mode;
        int p[2];
        register int myside, hisside;
        int pid, doshell;
        int p[2];
        register int myside, hisside;
        int pid, doshell;
-       char *shell, buf[LINESIZE], **argv[MAXARGC];
+       char *shell, buf[LINESIZE], *argv[MAXARGC];
 
        doshell = 1;
        if ((shell = value("shell")) || (shell = value("SHELL"))) {
 
        doshell = 1;
        if ((shell = value("shell")) || (shell = value("SHELL"))) {