be less restrictive (RFC says NUL CR and LF need to be escaped)

This commit is contained in:
Felix von Leitner 2018-12-14 22:21:53 +00:00
parent d4adc803fe
commit 0a753734d3
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ size_t fmt_ldapescape2(char* dest,const char* src,size_t len,const char* escapem
register const unsigned char* s=(const unsigned char*) src;
size_t written=0,i;
for (i=0; i<len; ++i) {
if (s[i]=='\\' || s[i]<' ' || strchr(escapeme,s[i])) {
if (s[i]=='\\' || s[i]==0 || s[i]==10 || s[i]==13 || strchr(escapeme,s[i])) {
if (dest) {
dest[written]='\\';
dest[written+1]=fmt_tohex(s[i]>>4);