Skip to content

Commit

Permalink
lib: stop escaping ".".
Browse files Browse the repository at this point in the history
it often appears for names like "libc.so".
  • Loading branch information
yamt committed Aug 5, 2024
1 parent a035a5c commit 2bf37e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/escape.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ need_escape(char ch)
* delimiters in log messages.
*/
return ch < 0x20 || ch == ' ' || ch == '=' || ch == ':' ||
ch == '\\' || ch == '.' || ch == ',' || ch >= 0x7f;
ch == '\\' || ch == ',' || ch >= 0x7f;
}

static char
Expand Down

0 comments on commit 2bf37e3

Please sign in to comment.