diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-19 14:13:20 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-19 14:13:20 +0000 |
commit | 671ca33aa1804c1c4e26bf83635206dce7ed2623 (patch) | |
tree | 4bf32b2810361b905bb7e8e1796b1cc22da0eb81 /networking | |
parent | a58a637bed06f6d794fcf822d08df926812ccd23 (diff) | |
download | busybox-w32-671ca33aa1804c1c4e26bf83635206dce7ed2623.tar.gz busybox-w32-671ca33aa1804c1c4e26bf83635206dce7ed2623.tar.bz2 busybox-w32-671ca33aa1804c1c4e26bf83635206dce7ed2623.zip |
init: make it NOMMU-capable
httpd: trivial compile fix
Diffstat (limited to 'networking')
-rw-r--r-- | networking/httpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index 2c580b032..bcd1126a6 100644 --- a/networking/httpd.c +++ b/networking/httpd.c | |||
@@ -2192,7 +2192,7 @@ static void mini_httpd_nommu(int server_socket, int argc, char **argv) | |||
2192 | 2192 | ||
2193 | /* Wait for connections... */ | 2193 | /* Wait for connections... */ |
2194 | fromAddr.len = LSA_SIZEOF_SA; | 2194 | fromAddr.len = LSA_SIZEOF_SA; |
2195 | n = accept(server_socket, &fromAddr.sa, &fromAddr.len); | 2195 | n = accept(server_socket, &fromAddr.u.sa, &fromAddr.len); |
2196 | 2196 | ||
2197 | if (n < 0) | 2197 | if (n < 0) |
2198 | continue; | 2198 | continue; |