Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-06-26 13:05:32 +0400
committerEric Andersen <andersen@codepoet.org>2003-06-26 13:05:32 +0400
commita3bb3e6e0b80c5c905e8088b44be9b850c876b88 (patch)
treea3bff17bd1a15becbd989f510127bae6c895fb2c /libbb/xgetlarg.c
parentfd10c70521203bfbb5d87a2e66048ffab1f13c4c (diff)
Geir Thomassen wrote, regarding networking/httpd.c line 1358
Hello, I think the test for an unconfigured httpd is wrong in the CVS (busybox-unstable-20030620.tar.bz2) flg_deny_all is default 0 vodz then wrote: Oops. You are right. Also, this mistake haved from two place. Last patch rewroted to my new get_ularg() function for overcompensate size from this error found ;-)
Diffstat (limited to 'libbb/xgetlarg.c')
-rw-r--r--libbb/xgetlarg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/xgetlarg.c b/libbb/xgetlarg.c
index 06e776dc9..c1bfa277a 100644
--- a/libbb/xgetlarg.c
+++ b/libbb/xgetlarg.c
@@ -13,7 +13,7 @@
#include "busybox.h"
-extern long bb_xgetlarg(char *arg, int base, long lower, long upper)
+extern long bb_xgetlarg(const char *arg, int base, long lower, long upper)
{
long result;
char *endptr;