Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Olivier Crête
libnice
Commits
c55ecf4e
Commit
c55ecf4e
authored
Jan 15, 2009
by
Youness Alaoui
Browse files
use TRUE/FALSE instead of true/false
parent
23115d36
Changes
2
Hide whitespace changes
Inline
Side-by-side
agent/conncheck.c
View file @
c55ecf4e
...
...
@@ -2149,11 +2149,11 @@ static bool conncheck_stun_validater (StunAgent *agent,
}
stun_debug
(
"Found valid username, returning password: '%s'
\n
"
,
*
password
);
return
true
;
return
TRUE
;
}
}
return
false
;
return
FALSE
;
}
...
...
stun/stunagent.c
View file @
c55ecf4e
...
...
@@ -82,11 +82,11 @@ bool stun_agent_default_validater (StunAgent *agent,
*
password
=
(
uint8_t
*
)
val
[
i
].
password
;
*
password_len
=
val
[
i
].
password_len
;
stun_debug
(
"Found valid username, returning password : '%s'
\n
"
,
*
password
);
return
true
;
return
TRUE
;
}
}
return
false
;
return
FALSE
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment