Commit c55ecf4e authored by Youness Alaoui's avatar Youness Alaoui

use TRUE/FALSE instead of true/false

parent 23115d36
...@@ -2149,11 +2149,11 @@ static bool conncheck_stun_validater (StunAgent *agent, ...@@ -2149,11 +2149,11 @@ static bool conncheck_stun_validater (StunAgent *agent,
} }
stun_debug ("Found valid username, returning password: '%s'\n", *password); stun_debug ("Found valid username, returning password: '%s'\n", *password);
return true; return TRUE;
} }
} }
return false; return FALSE;
} }
......
...@@ -82,11 +82,11 @@ bool stun_agent_default_validater (StunAgent *agent, ...@@ -82,11 +82,11 @@ bool stun_agent_default_validater (StunAgent *agent,
*password = (uint8_t *) val[i].password; *password = (uint8_t *) val[i].password;
*password_len = val[i].password_len; *password_len = val[i].password_len;
stun_debug ("Found valid username, returning password : '%s'\n", *password); stun_debug ("Found valid username, returning password : '%s'\n", *password);
return true; return TRUE;
} }
} }
return false; return FALSE;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment