Michael Adam
e6ac4b28cd
conffile: fix some missing initializer warnings in the directives definition.
...
Michael
2009-08-04 23:47:28 +02:00
Michael Adam
32c7caf710
conffile: reformat some indentation and linebreak in the directives definition.
...
Michael
2009-08-04 23:47:28 +02:00
Michael Adam
8f955d5543
child: add explicit cast in child_main().
...
Michael
2009-08-04 23:47:28 +02:00
Michael Adam
50dbd61063
buffer: add explicit cast in read_buffer().
...
Michael
2009-08-04 23:47:28 +02:00
Michael Adam
e5e665b0c6
buffer: add explicit cast in new_buffer().
...
Michael
2009-08-04 23:47:27 +02:00
Michael Adam
88dbe04c81
buffer: untangle assignment and check.
...
Michael
2009-08-04 23:47:27 +02:00
Michael Adam
f5c80119ca
buffer: add two explicit casts to reduce compiler warnings in makenewline().
...
Michael
2009-08-04 23:47:27 +02:00
Michael Adam
25344751eb
buffer: untangle assignment from check in makenewline().
...
For better debuggability.
Michael
2009-08-04 23:47:27 +02:00
Michael Adam
ab4df6edb8
check_acl(): initialize "perm" to eliminate compiler warning.
...
Provides safe fallback for switch statement, just in case..
Michael
2009-08-04 23:47:27 +02:00
Michael Adam
14a3e187ee
check_acl(): remove the fd argument - it is not used.
...
Host name and IP address are provided instead.
Michael
2009-08-04 23:47:27 +02:00
Michael Adam
64ff313260
check_acl(): fix function header comment.
...
Michael
2009-08-04 23:47:27 +02:00
Michael Adam
0abd82b7e9
check_acl(): add explicit cast to return value of vector_getentry()
...
to reduce compiler warnings.
Michael
2009-08-04 23:47:27 +02:00
Michael Adam
b9f2325c54
check_acl(): add cast to recuce compiler warning (unsigned / signed comparison)
...
vector_lenth() returns < 0 if the vectore is NULL but this has been
checked before, so we can safely cast.
Michael
2009-08-04 23:47:27 +02:00
Michael Adam
a34276feee
change vector_prepend() to take size_t len instead of ssize_t len argument.
...
Michael
2009-08-04 23:47:27 +02:00
Michael Adam
67628dcc63
change vector_append() to take size_t len instead of ssize_t len argument
...
Michael
2009-08-04 23:47:27 +02:00
Michael Adam
590f99ef2d
vector: change vectore_insert() to take size_t len instead of ssize_t len arg
...
Michael
2009-08-04 23:47:27 +02:00
Michael Adam
c2c7245030
remove "discard const" compiler warnings with log_message().
...
Michael
2009-08-04 23:47:26 +02:00
Michael Adam
c409e0f9d8
configure: Add more warnings to CFLAGS in debug mode
...
Michael
2009-08-04 23:47:26 +02:00
Michael Adam
04b19ac8b4
tinyproxy.conf: fix a comment typo
...
Michael
2009-08-04 01:36:22 +02:00
Mukund Sivaraman
9d971cb2d0
[BB#53] Add a GPLv2 COPYING file
...
Tinyproxy is distributed under the GNU GPLv2 or above license.
If autotools are used to build Tinyproxy without this file, they
copy the system installed COPYING file which is nowadays the
GNU GPLv3 license.
2009-08-04 04:21:46 +05:30
Michael Adam
1491483c35
tinyproxy.conf: kill some trailing spaces
...
Michael
2009-06-14 23:01:07 +02:00
Michael Adam
3ebb2ce607
autogen.sh: fix errors with new autotools.
...
The following errors occurred when running ./autogen.sh :
$ ./autogen.sh
+ aclocal
configure.ac:18: warning: AC_COMPILE_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS
../../lib/autoconf/specific.m4:386: AC_USE_SYSTEM_EXTENSIONS is expanded from...
../../lib/autoconf/specific.m4:332: AC_GNU_SOURCE is expanded from...
configure.ac:18: the top level
configure.ac:18: warning: AC_RUN_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS
configure.ac:19: warning: AC_COMPILE_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS
../../lib/autoconf/specific.m4:459: AC_MINIX is expanded from...
configure.ac:19: the top level
configure.ac:19: warning: AC_RUN_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS
and so on for autoheader and friends.
According to the autotools docs, the proper way to handle this
is to just call AC_USE_SYSTEM_EXTENSIONS.
Michael
2009-05-29 00:09:43 +02:00
Mukund Sivaraman
0b191f16fe
Indenting change
2008-12-29 13:28:02 +00:00
Mukund Sivaraman
024b317de0
Convert tabs to spaces
2008-12-08 13:39:44 +00:00
Mukund Sivaraman
6e6f992f8c
Update Tinyproxy website URL
2008-12-08 12:41:44 +00:00
Mukund Sivaraman
4c1ede779e
Break at 80 columns
2008-12-08 12:26:08 +00:00
Mukund Sivaraman
a257703e59
Reformat code to GNU coding style
...
This is a commit which simply ran all C source code files
through GNU indent. No other modifications were made.
2008-12-01 15:01:11 +00:00
Mukund Sivaraman
448c19077c
Don't disable the creation of core files
...
Creation of core files can be disabled in the OS environment such
as by using the ulimit program.
2008-12-01 14:40:26 +00:00
Mukund Sivaraman
a37a81db2d
Update Tinyproxy website URLs
2008-10-16 18:21:16 +01:00
Mukund Sivaraman
c15fc551da
Tweak configure.ac a bit
2008-08-24 12:28:39 +05:30
Mukund Sivaraman
8c1beab96e
Update the bugmail field
2008-08-24 12:16:08 +05:30
Mukund Sivaraman
fadb98ee55
Add more calls to umask() before mkstemp()
2008-08-24 11:47:50 +05:30
Mukund Sivaraman
82cd6c765b
Move buffer to the heap due to its size
2008-08-24 11:38:59 +05:30
Mukund Sivaraman
fce253253a
Set umask before mkstemp() for some versions of glibc
2008-08-24 11:27:38 +05:30
Mukund Sivaraman
62ddbd5e74
pos can never be less than 0 as it's of type size_t
...
Also fix the type which is passed in from various places.
2008-08-24 10:58:16 +05:30
Mukund Sivaraman
90c1bb4b73
Remove useless check as data can't be NULL at this point
2008-08-24 10:45:29 +05:30
Mukund Sivaraman
039273c134
Add whitespace
2008-07-30 18:56:15 +05:30
Mukund Sivaraman
f613cec7ad
Update the bug-report field
2008-07-30 18:53:55 +05:30
Mukund Sivaraman
fc06880f81
Add missing comma
2008-07-14 18:20:43 +05:30
Mukund Sivaraman
7c1c547fc8
Change bug report address to email address in AC_INIT
2008-07-14 18:17:41 +05:30
Mukund Sivaraman
aa95c34004
Allow numeric uid/gids in User and Group directives
...
This change allows numeric uid/gids to be specified in the User and
Group directives in tinyproxy.conf. Formerly, only username and group
names were accepted. This fixes bug #15 , which was created after
looking at a case on the OpenWrt wiki.
X-Banu-Bugzilla-Ids: 15
2008-07-14 17:40:20 +05:30
Mukund Sivaraman
2fe213d777
Fix error variable names that stats.html expects
2008-07-14 17:14:12 +05:30
Mukund Sivaraman
7e5ac7c58a
Fix a regression where empty error variables caused strlen() to crash
...
This fixes a regression (bug #16 ) introduced in
95c1f39f6039dc82346f3e024e86a23b7103a0a6, where a NULL check was
removed. This caused NULL error variable values to be sent to
add_error_variable() in which strlen() segfaulted.
With this fix, custom stats pages should be displayed properly.
X-Banu-Bugzilla-Ids: 16
2008-07-14 17:13:06 +05:30
Mukund Sivaraman
7bdd47d030
Make the embedded error message display valid XHTML too
...
Also fix the information that is displayed.
2008-07-14 15:47:00 +05:30
Mukund Sivaraman
7b9e178a76
Add version info in embedded stats page
2008-07-14 15:46:05 +05:30
Mukund Sivaraman
7f12f71f94
Add error number as a template parameter for error pages
2008-07-14 15:31:14 +05:30
Mukund Sivaraman
8b26558254
Make the embedded stats message display valid XHTML too
2008-07-14 15:09:02 +05:30
Mukund Sivaraman
74f5c3e417
Spruce up error page footers a bit
2008-07-14 15:02:41 +05:30
Mukund Sivaraman
4caa397ec5
Replace h2 with h1 for the main heading
2008-07-14 14:32:02 +05:30
Mukund Sivaraman
4f0b24ff9a
Remove ltmain.sh from dist target
2008-07-14 14:30:32 +05:30