summaryrefslogtreecommitdiff
path: root/src/cli_path_utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli_path_utils.c')
-rw-r--r--src/cli_path_utils.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/cli_path_utils.c b/src/cli_path_utils.c
index 4045516..84a2bc0 100644
--- a/src/cli_path_utils.c
+++ b/src/cli_path_utils.c
@@ -483,8 +483,7 @@ char *clind_unescape(const char *name)
else if (*cp >='0' && *cp<='9')
*rcp = (*cp-'0')*16;
else {
- printf("Bad escape in |%s|\n", name);
- exit(-1);
+ bye("Bad escape in |%s|\n", name);
}
++cp;
if (*cp >='a' && *cp<='f')
@@ -494,8 +493,7 @@ char *clind_unescape(const char *name)
else if (*cp >='0' && *cp<='9')
*rcp += (*cp-'0');
else {
- printf("Bad escape in |%s|\n", name);
- exit(-1);
+ bye("Bad escape in |%s|\n", name);
}
}else
*rcp = *cp;