summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2009-08-07log: make const char array const.Michael Adam
Michael
2009-08-07http_message_add_headers: make argument num_headers unsignedMichael Adam
and remove signed vs. unsigned comparison warnings. Michael
2009-08-07http_message_add_headers(): fix implicit cast warning.Michael Adam
Michael
2009-08-07http_message_create(): remove two implicit cast warnings.Michael Adam
Michael
2009-08-07heap: make a const string const in malloc_shared_memory().Michael Adam
Michael
2009-08-07heap: fix an implicit cast warning.Michael Adam
Michael
2009-08-07hashmap: fix three implicit cast warnings.Michael Adam
Michael
2009-08-07Fix an implicit cast warning in initialize_conn().Michael Adam
Michael
2009-08-07send_html_file(): remove a discards qualifyer warningMichael Adam
and untangle assignment from check. Michael
2009-08-07html-error: make read only argument const in lookup_variable().Michael Adam
Michael
2009-08-07make a const string const in send_http_error_message().Michael Adam
Michael
2009-08-07make a const string const in send_http_headers().Michael Adam
Michael
2009-08-07make message argument of indicate_http_error() const.Michael Adam
Michael
2009-08-07make message argument to send_http_headers() constant.Michael Adam
Michael
2009-08-07add_error_variable(): make key and data arguments constMichael Adam
Michael
2009-08-07showstats(): fix an implicit cast warning.Michael Adam
Michael
2009-08-07showstats(): add a const to a const stringMichael Adam
Michael
2009-08-07init_stats(): fix implicit cast warning.Michael Adam
Michael
2009-08-07Update bug tracker URLMukund Sivaraman
2009-08-07Wrap len in paranthesesMukund Sivaraman
2009-08-07correctly handle folded header fieldsMatthew Dempsky
2009-08-07Fix const warningMukund Sivaraman
2009-08-07Rename tinyproxy.[ch] to main.[ch]Mukund Sivaraman
2009-08-06fix error message formattingMatthew Dempsky
Signed-off-by: Michael Adam <obnox@samba.org>
2009-08-05.gitignore: ignore vi backup filesMichael Adam
Michael
2009-08-05add const to the key argument of anonymous_insert().Michael Adam
Michael
2009-08-05add const to the key argument for anonymous_search().Michael Adam
Michael
2009-08-05utils: make headers constant in send_http_message() to reduce compiler warningsMichael Adam
Michael
2009-08-05http_message_add_headers(): make parameter headers const.Michael Adam
Michael
2009-08-04filter_init(): kill implicit cast warnings by adding explicit casts.Michael Adam
Michael
2009-08-04vector: remove implicit cast warning in vector_insert() by adding explicit castMichael Adam
Michael
2009-08-04vector: remove implicit cast warning in vector_create()Michael Adam
Michael
2009-08-04child_pool_create(): add to explicit cats to reduce compiler warnings.Michael Adam
Michael
2009-08-04child: adapt child_config to contain unsigned integersMichael Adam
as just changed in get_int_arg. Michael
2009-08-04conffile: change [sg]et_int_arg() to return unsigned long intMichael Adam
This is also the parser regexp for INT in the definition. Michael
2009-08-04conffile: add explicit cast in get_string_arg().Michael Adam
Michael
2009-08-04config_compile(): add an explicit cast.Michael Adam
Michael
2009-08-04config_compile(): fix as signed / unsigned comparison compiler warning.Michael Adam
Michael
2009-08-04conffile: fix indentation in the directives definition.Michael Adam
Michael
2009-08-04conffile: fix some missing initializer warnings in the directives definition.Michael Adam
Michael
2009-08-04conffile: reformat some indentation and linebreak in the directives definition.Michael Adam
Michael
2009-08-04child: add explicit cast in child_main().Michael Adam
Michael
2009-08-04buffer: add explicit cast in read_buffer().Michael Adam
Michael
2009-08-04buffer: add explicit cast in new_buffer().Michael Adam
Michael
2009-08-04buffer: untangle assignment and check.Michael Adam
Michael
2009-08-04buffer: add two explicit casts to reduce compiler warnings in makenewline().Michael Adam
Michael
2009-08-04buffer: untangle assignment from check in makenewline().Michael Adam
For better debuggability. Michael
2009-08-04check_acl(): initialize "perm" to eliminate compiler warning.Michael Adam
Provides safe fallback for switch statement, just in case.. Michael
2009-08-04check_acl(): remove the fd argument - it is not used.Michael Adam
Host name and IP address are provided instead. Michael
2009-08-04check_acl(): fix function header comment.Michael Adam
Michael