python-whoosh: bump to version 2.7.4
[buildroot-gz.git] / package / thttpd / 0001-getline.patch
blob35c366aef15a34acf8cbc7b54b6a5777bdf9f2b3
1 Fix glibc/eglibc getline() conflicting functions.
3 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
4 ---
6 diff -Nura thttpd-2.25b.orig/extras/htpasswd.c thttpd-2.25b/extras/htpasswd.c
7 --- thttpd-2.25b.orig/extras/htpasswd.c 2001-12-18 21:08:08.000000000 -0300
8 +++ thttpd-2.25b/extras/htpasswd.c 2011-11-25 11:42:47.198582812 -0300
9 @@ -49,7 +49,7 @@
10 while((line[y++] = line[x++]));
13 -static int getline(char *s, int n, FILE *f) {
14 +static int get_line(char *s, int n, FILE *f) {
15 register int i=0;
17 while(1) {
18 @@ -189,7 +189,7 @@
19 strcpy(user,argv[2]);
21 found = 0;
22 - while(!(getline(line,MAX_STRING_LEN,f))) {
23 + while(!(get_line(line,MAX_STRING_LEN,f))) {
24 if(found || (line[0] == '#') || (!line[0])) {
25 putline(tfp,line);
26 continue;