Commit b0dc680f authored by Ben Laurie's avatar Ben Laurie
Browse files

Fix warnings.

parent addb309a
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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 **);
+2 −2
Original line number Diff line number Diff line
@@ -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[])
	{
+7 −1
Original line number Diff line number Diff line
@@ -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	*/