]> granicus.if.org Git - sudo/commitdiff
added check_secureware
authorTodd C. Miller <Todd.Miller@courtesan.com>
Sun, 18 Oct 1998 22:16:10 +0000 (22:16 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Sun, 18 Oct 1998 22:16:10 +0000 (22:16 +0000)
Makefile.in
sudo.h

index 7b8a7496f9826100d778eeb1d508482a5330f532..88844b1d3cce3717993e647f556846b430666155 100644 (file)
@@ -97,13 +97,13 @@ SHELL = /bin/sh
 
 PROGS = @PROGS@
 
-SRCS = check.c getspwuid.c find_path.c logging.c parse.c sudo.c \
+SRCS = check.c getspwuid.c find_path.c logging.c parse.c sudo.c secureware.c \
        goodpath.c sudo_setenv.c parse.yacc parse.lex visudo.c interfaces.c
 
 PARSEOBJS = sudo.tab.o lex.yy.o
 
 SUDOBJS = check.o getspwuid.o find_path.o logging.o parse.o sudo.o goodpath.o \
-          sudo_setenv.o interfaces.o @DCE_OBJS@ @TGETPASS@
+          sudo_setenv.o interfaces.o secureware.o @DCE_OBJS@ @TGETPASS@
 
 VISUDOBJS = visudo.o
 
@@ -133,7 +133,7 @@ VERSIONFILES = emul/utime.h check.c compat.h config.h.in dce_pwent.c \
               ins_classic.h ins_csops.h ins_goons.h insults.h interfaces.c \
               logging.c parse.c parse.lex parse.yacc pathnames.h.in \
               putenv.c strdup.c sudo.c sudo.h sudo_setenv.c testsudoers.c \
-              tgetpass.c utime.c visudo.c
+              tgetpass.c utime.c visudo.c secureware.c
 
 all: $(PROGS)
 
diff --git a/sudo.h b/sudo.h
index 662c2db2fd13a7086b559f82721fb7619b555853..e4cb764d5842ffee17dcc74c386f51cb9eed73c3 100644 (file)
--- a/sudo.h
+++ b/sudo.h
@@ -205,6 +205,7 @@ int validate                __P((int));
 void set_perms         __P((int, int));
 void remove_timestamp  __P((void));
 void load_interfaces   __P((void));
+int check_secureware   __P((char *));
 int yyparse            __P((void));
 YY_DECL;