From 544100783d955fbd01fddf108d58848c66d9f7e4 Mon Sep 17 00:00:00 2001 From: Guido Vranken Date: Fri, 23 Jun 2017 16:33:10 +0200 Subject: [PATCH] IO abstractions in list.c --- src/openvpn/list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openvpn/list.c b/src/openvpn/list.c index edca6f796..acbe08795 100644 --- a/src/openvpn/list.c +++ b/src/openvpn/list.c @@ -414,7 +414,7 @@ list_test(void) int bi; char c; - if (!fgets(buf, sizeof(buf), stdin)) + if (!platform_fgets(buf, sizeof(buf), stdin)) { break; } -- 2.47.2