mirror of
https://github.com/Ponce/slackbuilds
synced 2024-10-30 18:44:18 +01:00
22 lines
691 B
Diff
22 lines
691 B
Diff
|
diff -ur thttpd-2.25b.orig/extras/htpasswd.c thttpd-2.25b/extras/htpasswd.c
|
||
|
--- thttpd-2.25b.orig/extras/htpasswd.c 2001-12-19 02:08:08.000000000 +0200
|
||
|
+++ thttpd-2.25b/extras/htpasswd.c 2009-08-09 16:40:06.000000000 +0300
|
||
|
@@ -49,7 +49,7 @@
|
||
|
while((line[y++] = line[x++]));
|
||
|
}
|
||
|
|
||
|
-static int getline(char *s, int n, FILE *f) {
|
||
|
+static int get_line(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(!(get_line(line,MAX_STRING_LEN,f))) {
|
||
|
if(found || (line[0] == '#') || (!line[0])) {
|
||
|
putline(tfp,line);
|
||
|
continue;
|