summaryrefslogtreecommitdiffstats
path: root/src/kadmin/cli/getdate.y
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2001-02-26 19:14:29 +0000
committerEzra Peisach <epeisach@mit.edu>2001-02-26 19:14:29 +0000
commitc6f0ee6a28dda43ac267105323e98afcd2aa69ca (patch)
tree69f0c5647e335f9cf2084437bcfbac51f2d24100 /src/kadmin/cli/getdate.y
parent4036994d4fe71c6c10383e7ffd5e70c5de261a45 (diff)
downloadkrb5-c6f0ee6a28dda43ac267105323e98afcd2aa69ca.tar.gz
krb5-c6f0ee6a28dda43ac267105323e98afcd2aa69ca.tar.xz
krb5-c6f0ee6a28dda43ac267105323e98afcd2aa69ca.zip
* ss_wrapper.c: Include kadmin.h
* kadmin.c, keytab.c: Warning cleanup of shadowing variables, missing prototypes, assignments within conditionals. variables type mismatches. * getdate.y: Prototypes in file are for getdate_yylex() and getdaye_yyerror() and not yylex()/yyerror(). * kadmin.h: New header file with ss callback prototypes and global variables. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13026 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/kadmin/cli/getdate.y')
-rw-r--r--src/kadmin/cli/getdate.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kadmin/cli/getdate.y b/src/kadmin/cli/getdate.y
index 6de1f7e2a7..1b4613cb99 100644
--- a/src/kadmin/cli/getdate.y
+++ b/src/kadmin/cli/getdate.y
@@ -119,8 +119,8 @@ extern struct tm *localtime();
#define yylex getdate_yylex
#define yyerror getdate_yyerror
-static int yylex ();
-static int yyerror ();
+static int getdate_yylex ();
+static int getdate_yyerror ();
#if !defined(lint) && !defined(SABER) && !defined(_LINT)
static char RCS[] =