diff options
author | Phil Blundell <philb@gnu.org> | 2010-06-04 14:02:59 +0100 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2010-06-04 14:02:59 +0100 |
commit | 1d84ab01cc0d66368e07564e8498bcdd73e35018 (patch) | |
tree | c2cfd8a46e1eae2d41b930f89e9facafe1b228d0 /recipes/thttpd/files | |
parent | c235146da8799defb436c414ee6f11b4b2a0e1c3 (diff) |
thttpd: fix a compilation failure
Diffstat (limited to 'recipes/thttpd/files')
-rw-r--r-- | recipes/thttpd/files/htpasswd_getline.diff | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/recipes/thttpd/files/htpasswd_getline.diff b/recipes/thttpd/files/htpasswd_getline.diff new file mode 100644 index 0000000000..82b12e28cb --- /dev/null +++ b/recipes/thttpd/files/htpasswd_getline.diff @@ -0,0 +1,20 @@ +--- thttpd-2.25b/extras/htpasswd.c.old 2010-04-28 17:23:40.000000000 +0100 ++++ thttpd-2.25b/extras/htpasswd.c 2010-04-28 17:24:00.000000000 +0100 +@@ -49,7 +49,7 @@ + while((line[y++] = line[x++])); + } + +-static int getline(char *s, int n, FILE *f) { ++static int ht_getline(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(!(ht_getline(line,MAX_STRING_LEN,f))) { + if(found || (line[0] == '#') || (!line[0])) { + putline(tfp,line); + continue; |