summaryrefslogtreecommitdiffstats
path: root/tty-term.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-08-23 11:40:05 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-08-23 11:40:05 +0000
commit1eb303e6d401c1ef2992933532eb2d7eab36cecf (patch)
tree35f94a052f5fb92eb4c397f3e09942760e8e7fa1 /tty-term.c
parent926b52b6002164b4bc82624674d488e7fe1e42c2 (diff)
Check the return value of strunvis against -1 not NULL.
Diffstat (limited to 'tty-term.c')
-rw-r--r--tty-term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tty-term.c b/tty-term.c
index 50b2520a..dd3e8e00 100644
--- a/tty-term.c
+++ b/tty-term.c
@@ -173,7 +173,7 @@ tty_term_override(struct tty_term *term, const char *overrides)
if ((ptr = strchr(entstr, '=')) != NULL) {
*ptr++ = '\0';
val = xstrdup(ptr);
- if (strunvis(val, ptr) == NULL) {
+ if (strunvis(val, ptr) == -1) {
xfree(val);
val = xstrdup(ptr);
}