From d015557a828b59d4dc38f3c77cf86396d9dd6288 Mon Sep 17 00:00:00 2001 From: ache Date: Sun, 14 May 1995 22:33:52 +0000 Subject: [PATCH] Parse ^? correctly now --- lib/libmytinfo/gettcap.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/libmytinfo/gettcap.c b/lib/libmytinfo/gettcap.c index c3acf08ee31a..ac900c280af7 100644 --- a/lib/libmytinfo/gettcap.c +++ b/lib/libmytinfo/gettcap.c @@ -174,6 +174,9 @@ struct term_path *path; { *dp++ = '0'; } sp++; + } else if (*sp == '?') { + *dp++ = '\177'; + sp++; } else *dp++ = '^'; break;