diff mbox series

multipathd: Add missing ctype include

Message ID 20211013223433.7190-1-bage@debian.org (mailing list archive)
State Not Applicable, archived
Delegated to: christophe varoqui
Headers show
Series multipathd: Add missing ctype include | expand

Commit Message

Bastian Germann Oct. 13, 2021, 10:34 p.m. UTC
In uxclnt.c, there are isspace calls. Add an explicit include.

Signed-off-by: Bastian Germann <bage@debian.org>
---
 multipathd/uxclnt.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/multipathd/uxclnt.c b/multipathd/uxclnt.c
index a76f8e29..f16a7309 100644
--- a/multipathd/uxclnt.c
+++ b/multipathd/uxclnt.c
@@ -8,6 +8,7 @@ 
 #include <stdlib.h>
 #include <unistd.h>
 #include <stdarg.h>
+#include <ctype.h>
 #include <fcntl.h>
 #include <errno.h>
 #include <sys/ioctl.h>