Skip to content

Commit

Permalink
Leave input variable alone for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
alandekok committed Apr 22, 2014
1 parent be01e6b commit 011abf4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/parser.c
Expand Up @@ -47,11 +47,12 @@ static const FR_NAME_NUMBER allowed_return_codes[] = {
* This file shouldn't use any functions from the server core.
*/

size_t fr_cond_sprint(char *buffer, size_t bufsize, fr_cond_t const *c)
size_t fr_cond_sprint(char *buffer, size_t bufsize, fr_cond_t const *in)
{
size_t len;
char *p = buffer;
char *end = buffer + bufsize - 1;
fr_cond_t const *c = in;

next:
if (c->negate) {
Expand Down

0 comments on commit 011abf4

Please sign in to comment.