Fri Jan 16 13:42:45 CST 2009 Pekka Pessi <first.last@nokia.com>

* 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
This commit is contained in:
Michael Jerris 2009-02-11 17:10:01 +00:00
parent 3a1ac4929c
commit 95da674967
1 changed files with 3 additions and 3 deletions

View File

@ -98,7 +98,7 @@ void offset_time(su_time_t *tv)
tv->tv_sec += offset; tv->tv_sec += offset;
} }
int test_digest() int test_digest(void)
{ {
char challenge[] = "Digest " char challenge[] = "Digest "
"realm=\"garage.sr.ntc.nokia.com\", " "realm=\"garage.sr.ntc.nokia.com\", "
@ -476,7 +476,7 @@ void reinit_as(auth_status_t *as)
} }
/* Test digest authentication client and server */ /* Test digest authentication client and server */
int test_digest_client() int test_digest_client(void)
{ {
BEGIN(); BEGIN();
@ -1196,7 +1196,7 @@ char const passwd[] =
"\n"; "\n";
/* Test digest authentication client and server */ /* Test digest authentication client and server */
int test_module_io() int test_module_io(void)
{ {
auth_mod_t *am, am0[1]; auth_mod_t *am, am0[1];
auth_passwd_t *apw, *apw2; auth_passwd_t *apw, *apw2;