Formatting fix

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3242 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
James Golovich 2004-06-18 16:23:56 +00:00
parent 133120aa38
commit 18fef6deb1
1 changed files with 4 additions and 2 deletions

View File

@ -518,7 +518,8 @@ static int sip_do_reload(void);
/*--- sip_debug_test_addr: See if we pass debug IP filter */
static inline int sip_debug_test_addr(struct sockaddr_in *addr) {
static inline int sip_debug_test_addr(struct sockaddr_in *addr)
{
if (sipdebug == 0)
return 0;
if (debugaddr.sin_addr.s_addr) {
@ -530,7 +531,8 @@ static inline int sip_debug_test_addr(struct sockaddr_in *addr) {
return 1;
}
static inline int sip_debug_test_pvt(struct sip_pvt *p) {
static inline int sip_debug_test_pvt(struct sip_pvt *p)
{
if (sipdebug == 0)
return 0;
return sip_debug_test_addr((p->nat ? &p->recv : &p->sa));