mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 21:04:56 +00:00
wget: remove strange *&var construct.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
7f43280420
commit
ab0c8d7b35
@ -840,7 +840,7 @@ However, in real world it was observed that some web servers
|
||||
*/
|
||||
while ((str = gethdr(buf, sizeof(buf), sfp /*, &n*/)) != NULL) {
|
||||
/* gethdr converted "FOO:" string to lowercase */
|
||||
smalluint key = index_in_strings(keywords, *&buf) + 1;
|
||||
smalluint key = index_in_strings(keywords, buf) + 1;
|
||||
if (key == KEY_content_length) {
|
||||
content_len = BB_STRTOOFF(str, NULL, 10);
|
||||
if (errno || content_len < 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user