summaryrefslogtreecommitdiff
path: root/misc/estic/files/patch-areacode-actest.c
blob: 940062702c7a14ea6bd0c8e56b26b25fb8867058 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
--- areacode/actest.c.orig	1997-02-16 11:22:50.000000000 +0000
+++ areacode/actest.c	2017-10-17 18:26:38.899231000 +0000
@@ -60,7 +60,8 @@
 
         printf ("Enter phone number: ");
         fflush (stdout);
-        gets (Buf);
+        fgets (Buf, sizeof(Buf), stdin);
+        Buf[strcspn (Buf, "\n")] = '\0';
         if (strlen (Buf) == 0) {
             break;
         }