aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-06-26 09:05:32 +0000
committerEric Andersen <andersen@codepoet.org>2003-06-26 09:05:32 +0000
commita3bb3e6e0b80c5c905e8088b44be9b850c876b88 (patch)
treea3bff17bd1a15becbd989f510127bae6c895fb2c /include/libbb.h
parentfd10c70521203bfbb5d87a2e66048ffab1f13c4c (diff)
downloadbusybox-w32-a3bb3e6e0b80c5c905e8088b44be9b850c876b88.tar.gz
busybox-w32-a3bb3e6e0b80c5c905e8088b44be9b850c876b88.tar.bz2
busybox-w32-a3bb3e6e0b80c5c905e8088b44be9b850c876b88.zip
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 'include/libbb.h')
-rw-r--r--include/libbb.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 6f8a5040c..7b3ac4b85 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -131,7 +131,7 @@ extern int recursive_action(const char *fileName, int recurse,
131 void* userData); 131 void* userData);
132 132
133extern int bb_parse_mode( const char* s, mode_t* theMode); 133extern int bb_parse_mode( const char* s, mode_t* theMode);
134extern long bb_xgetlarg(char *arg, int base, long lower, long upper); 134extern long bb_xgetlarg(const char *arg, int base, long lower, long upper);
135 135
136extern unsigned long bb_baud_to_value(speed_t speed); 136extern unsigned long bb_baud_to_value(speed_t speed);
137extern speed_t bb_value_to_baud(unsigned long value); 137extern speed_t bb_value_to_baud(unsigned long value);
@@ -162,6 +162,7 @@ extern void bb_fflush_stdout_and_exit(int retval) __attribute__ ((noreturn));
162extern const char *bb_opt_complementaly; 162extern const char *bb_opt_complementaly;
163extern const struct option *bb_applet_long_options; 163extern const struct option *bb_applet_long_options;
164extern unsigned long bb_getopt_ulflags(int argc, char **argv, const char *applet_opts, ...); 164extern unsigned long bb_getopt_ulflags(int argc, char **argv, const char *applet_opts, ...);
165
165//#warning rename? 166//#warning rename?
166extern FILE *bb_wfopen_input(const char *filename); 167extern FILE *bb_wfopen_input(const char *filename);
167 168