Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / sysutils / sformat / patches / patch-sformat_io_c
blobad9792f3964180d8c0cfeae482e6ff5da3c9ae1b
1 $NetBSD$
3 Fix symbol name conflict with POSIX getline().
5 --- sformat/io.c        Sat Jun 16 04:48:53 2012 -0400
6 +++ sformat/io.c        Sat Jun 16 04:50:37 2012 -0400
7 @@ -245,7 +245,7 @@
8                 (*prt)(s, *lp, mini, maxi, dp);
9                 flush();
10                 line[0] = '\0';
11 -               if (getline(line, 80) == EOF)
12 +               if (get_line(line, 80) == EOF)
13                         exit(EX_BAD);
15                 linep = skipwhite(line);
16 @@ -332,7 +332,7 @@
17         printf("%r", form, args);
18         va_end(args);
19         flush();
20 -       if (getline(okbuf, sizeof(okbuf)) == EOF)
21 +       if (get_line(okbuf, sizeof(okbuf)) == EOF)
22                 exit(EX_BAD);
23         if (okbuf[0] == '?') {
24                 printf("Enter 'y', 'Y', 'yes' or 'YES' if you agree with the previous asked question.\n");
25 @@ -412,7 +412,7 @@
26                 printf("%s [%s]:", s, csp->s_name);
27                 flush();
28                 line[0] = '\0';
29 -               if (getline(line, 80) == EOF)
30 +               if (get_line(line, 80) == EOF)
31                         exit(EX_BAD);
33                 linep = skipwhite(line);