]> granicus.if.org Git - sudo/commitdiff
fixed dummy command_matches()
authorTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 22 Jul 1996 19:50:59 +0000 (19:50 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 22 Jul 1996 19:50:59 +0000 (19:50 +0000)
visudo.c

index 4ce972016b193b2701b904f50f9b49114a51de82..6df38181f5c05bfbb332b595afa7fedeaa798a93 100644 (file)
--- a/visudo.c
+++ b/visudo.c
@@ -82,7 +82,7 @@ static char whatnow           __P((void));
 static void whatnow_help       __P((void));
 static RETSIGTYPE Exit         __P((int));
 static void setup_signals      __P((void));
-int command_matches            __P((char *, char **, char *, char **));
+int command_matches            __P((char *, char *, char *, char *));
 int addr_matches               __P((char *));
 int netgr_matches              __P((char *, char *, char *));
 int usergr_matches             __P((char *, char *));
@@ -361,9 +361,9 @@ int main(argc, argv)
 
 int command_matches(cmnd, user_args, path, sudoers_args)
     char *cmnd;
-    char **user_args;
+    char *user_args;
     char *path;
-    char **sudoers_args;
+    char *sudoers_args;
 {
     return(TRUE);
 }