Skip to content

Commit

Permalink
\, --> , for consistency with everything else
Browse files Browse the repository at this point in the history
  • Loading branch information
alandekok committed Apr 1, 2014
1 parent ccbd25b commit 2ebd002
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/lib/valuepair.c
Expand Up @@ -1228,7 +1228,13 @@ bool pairparsevalue(VALUE_PAIR *vp, char const *value)
(sscanf(cp, "%3o", &x) == 1)) {
c = x;
cp += 3;
} /* else just do '\\' */

} else if (cp[0]) {
/*
* \p --> p
*/
c = *cp++;
} /* else at EOL \ --> \ */
}
}
*p++ = c;
Expand Down

0 comments on commit 2ebd002

Please sign in to comment.