Fix warnings.

This commit is contained in:
Ben Laurie 2000-12-03 10:04:22 +00:00
parent addb309ad6
commit b0dc680f71
3 changed files with 13 additions and 7 deletions

View File

@ -215,10 +215,10 @@ static char *section=NULL;
static int preserve=0;
static int msie_hack=0;
static IMPLEMENT_LHASH_HASH_FN(index_serial_hash,const char **);
static IMPLEMENT_LHASH_COMP_FN(index_serial_cmp,const char **);
static IMPLEMENT_LHASH_HASH_FN(index_name_hash,const char **);
static IMPLEMENT_LHASH_COMP_FN(index_name_cmp,const char **);
static IMPLEMENT_LHASH_HASH_FN(index_serial_hash,const char **)
static IMPLEMENT_LHASH_COMP_FN(index_serial_cmp,const char **)
static IMPLEMENT_LHASH_HASH_FN(index_name_hash,const char **)
static IMPLEMENT_LHASH_COMP_FN(index_name_cmp,const char **)
int MAIN(int, char **);

View File

@ -85,8 +85,8 @@ char *default_config_file=NULL;
BIO *bio_err=NULL;
#endif
static IMPLEMENT_LHASH_HASH_FN(hash,FUNCTION *);
static IMPLEMENT_LHASH_COMP_FN(cmp,FUNCTION *);
static IMPLEMENT_LHASH_HASH_FN(hash,FUNCTION *)
static IMPLEMENT_LHASH_COMP_FN(cmp,FUNCTION *)
int main(int Argc, char *Argv[])
{

View File

@ -1030,5 +1030,11 @@ void kssl_krb5_free_data_contents(krb5_context context, krb5_data *data)
#endif
}
#endif /* NO_KRB5 */
#else /* !NO_KRB5 */
#ifdef PEDANTIC
static int dummy=(int)&dummy;
#endif
#endif /* !NO_KRB5 */