summaryrefslogtreecommitdiffstats
path: root/src/u_utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/u_utils.c')
-rw-r--r--src/u_utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/u_utils.c b/src/u_utils.c
index fb1dcf6..7f75c4d 100644
--- a/src/u_utils.c
+++ b/src/u_utils.c
@@ -23,8 +23,8 @@ t_bool
u_is_not_escaped(char *head, char *ptr)
{
if (((ptr - head) == 0) ||
- ((ptr - head) >= 1 && *(ptr - 1) != C_BS) ||
- ((ptr - head) > 1 && *(ptr - 1) == C_BS && *(ptr - 2) == C_BS))
+ ((ptr - head) >= 1 && *(ptr - 1) != C_BACKS) ||
+ ((ptr - head) > 1 && *(ptr - 1) == C_BACKS && *(ptr - 2) == C_BACKS))
return (TRUE);
return (FALSE);
}