aboutsummaryrefslogtreecommitdiff
path: root/networking/httpd.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-10-08 12:49:22 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-10-08 12:49:22 +0000
commit1385899416a4396385ad421ae1f532be7103738a (patch)
treefc4d14a910593d1235318bb36abe5e9f72d2039e /networking/httpd.c
parent5625415085e68ac5e150f54e685417c866620d76 (diff)
downloadbusybox-w32-1385899416a4396385ad421ae1f532be7103738a.tar.gz
busybox-w32-1385899416a4396385ad421ae1f532be7103738a.tar.bz2
busybox-w32-1385899416a4396385ad421ae1f532be7103738a.zip
attempt to regularize atoi mess.
Diffstat (limited to 'networking/httpd.c')
-rw-r--r--networking/httpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/httpd.c b/networking/httpd.c
index 0e471ba58..f3fe49cae 100644
--- a/networking/httpd.c
+++ b/networking/httpd.c
@@ -1951,7 +1951,7 @@ int httpd_main(int argc, char *argv[])
1951#endif 1951#endif
1952#if ENABLE_FEATURE_HTTPD_WITHOUT_INETD 1952#if ENABLE_FEATURE_HTTPD_WITHOUT_INETD
1953 if (opt & OPT_PORT) 1953 if (opt & OPT_PORT)
1954 config->port = bb_xgetlarg(s_port, 10, 1, 0xffff); 1954 config->port = xatou16(s_port);
1955#if ENABLE_FEATURE_HTTPD_SETUID 1955#if ENABLE_FEATURE_HTTPD_SETUID
1956 if (opt & OPT_SETUID) { 1956 if (opt & OPT_SETUID) {
1957 char *e; 1957 char *e;