From 95da6749670fa735aff1f5d12226a86ffdd3a4f3 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Wed, 11 Feb 2009 17:10:01 +0000 Subject: [PATCH] Fri Jan 16 13:42:45 CST 2009 Pekka Pessi * test_auth_digest.c: fixed warnings from function declarations git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11839 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- libs/sofia-sip/libsofia-sip-ua/iptsec/test_auth_digest.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/sofia-sip/libsofia-sip-ua/iptsec/test_auth_digest.c b/libs/sofia-sip/libsofia-sip-ua/iptsec/test_auth_digest.c index 9b6f114e5e..dd73fb0542 100644 --- a/libs/sofia-sip/libsofia-sip-ua/iptsec/test_auth_digest.c +++ b/libs/sofia-sip/libsofia-sip-ua/iptsec/test_auth_digest.c @@ -98,7 +98,7 @@ void offset_time(su_time_t *tv) tv->tv_sec += offset; } -int test_digest() +int test_digest(void) { char challenge[] = "Digest " "realm=\"garage.sr.ntc.nokia.com\", " @@ -476,7 +476,7 @@ void reinit_as(auth_status_t *as) } /* Test digest authentication client and server */ -int test_digest_client() +int test_digest_client(void) { BEGIN(); @@ -1196,7 +1196,7 @@ char const passwd[] = "\n"; /* Test digest authentication client and server */ -int test_module_io() +int test_module_io(void) { auth_mod_t *am, am0[1]; auth_passwd_t *apw, *apw2;