tags 552844 + confirmed patch thanks Hi, I can confirm this FTBFS on i386 too... The attached patch seems to fix the issue.
Regards, Ruben Molina
--- mini-httpd-1.19.orig/htpasswd.c +++ mini-httpd-1.19/htpasswd.c @@ -49,7 +49,7 @@ while((line[y++] = line[x++])); } -static int getline(char *s, int n, FILE *f) { +static int mygetline(char *s, int n, FILE *f) { register int i=0; while(1) { @@ -189,7 +189,7 @@ strcpy(user,argv[2]); found = 0; - while(!(getline(line,MAX_STRING_LEN,f))) { + while(!(mygetline(line,MAX_STRING_LEN,f))) { if(found || (line[0] == '#') || (!line[0])) { putline(tfp,line); continue;
signature.asc
Description: Esta parte del mensaje está firmada digitalmente