aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/man_extractor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/man_extractor.c')
-rw-r--r--src/plugins/man_extractor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/man_extractor.c b/src/plugins/man_extractor.c
index 15835ec..90a0631 100644
--- a/src/plugins/man_extractor.c
+++ b/src/plugins/man_extractor.c
@@ -116,7 +116,7 @@ EXTRACTOR_man_extract (const char *buf,
116 &buf[pos], 116 &buf[pos],
117 xlen)) || ((pos != 0) && (buf[pos - 1] != '\n')))) 117 xlen)) || ((pos != 0) && (buf[pos - 1] != '\n'))))
118 { 118 {
119 if (!isgraph (buf[pos]) && !isspace (buf[pos])) 119 if (!isgraph (buf[pos]) && !isspace ((unsigned char) buf[pos]))
120 return 0; 120 return 0;
121 pos++; 121 pos++;
122 } 122 }