jim 99/11/28 07:47:02
Modified:src CHANGES
src/ap ap_snprintf.c
Log:
The real fix for ap_snprintf :)
Revision ChangesPath
1.1462+1 -1 apache-1.3/src/CHANGES
Index: CHANGES
==
rse 99/11/28 05:53:41
Modified:src/ap ap_snprintf.c
Log:
Remove a useless #define which was left over from xinetd days.
Revision ChangesPath
1.39 +0 -1 apache-1.3/src/ap/ap_snprintf.c
Index: ap_snprintf.c
rse 99/11/28 05:51:54
Modified:src CHANGES
src/ap ap_snprintf.c
Log:
Fixed `quad integer' (aka `long long') handling in ap_snprintf.c
More details were described in my original posting two weeks ago:
---
martin 99/09/02 09:27:31
Modified:src/ap ap_snprintf.c
Log:
Some buggy compilers (noteably on 32 bit platforms) cannot deal with
"register" in combination with "long long" types. Drop the register
attribute in these cases.
Reviewed by: Greg Stein, Roy T. Fielding
Rev
coar99/08/06 15:16:05
Modified:src Configure
src/ap ap_snprintf.c
Log:
Put in fixes for Tandem compilation.
Submitted by: Michael Ottati <[EMAIL PROTECTED]>
Reviewed by: Ken Coar
Revision ChangesPath
1.366 +1 -1 apache-1.3/
jim 99/05/23 09:55:30
Modified:src Configure
src/ap ap_snprintf.c
Log:
What the hell, we can determine the size of void *
so just avoid any warnings in snprintf.c
Revision ChangesPath
1.348 +39 -8 apache-1.3/src/Configure
Index: Co
jim 99/05/22 04:24:42
Modified:src/ap ap_snprintf.c
Log:
More mucking with ap_snprintf(). Some
speed "tuneups" but also a renaming of some internal functions.
After some sleep, I thought that making the 'quad' specific functions
as having the "noted" names made better sen
jim 99/05/21 20:49:33
Modified:src/ap ap_snprintf.c
Log:
Provide some "faster" versions of the
conversion functions when the number value doesn't warrant use of
quads
Revision ChangesPath
1.32 +89 -6 apache-1.3/src/ap/ap_snprintf.c
Index: ap_snprin
jim 99/05/21 18:46:48
Modified:src/ap ap_snprintf.c
Log:
Final touch tonight... avoid the possibility
that var_type isn't defined. To work around possible buggy compilers, we
create an enum type and then the var and then assign it
Revision ChangesPath
1.31
jim 99/05/21 18:37:43
Modified:src/ap ap_snprintf.c
Log:
Some fine-tuning... use enums rather than 3
stupid vars
Revision ChangesPath
1.30 +23 -30apache-1.3/src/ap/ap_snprintf.c
Index: ap_snprintf.c
=
jim 99/05/21 17:16:51
Modified:src/ap ap_snprintf.c
Log:
Really handle the short 'h' flag now
Revision ChangesPath
1.29 +27 -4 apache-1.3/src/ap/ap_snprintf.c
Index: ap_snprintf.c
===
jim 99/05/21 15:41:44
Modified:src/ap ap_snprintf.c
Log:
Add the needed logic in ap_snprint to handle
quads (long longs). Note that we depend on AP_LONGEST_LONG being
set correctly. This change does not effect the current operation
of ap_snprintf, so it's OK to add right
dgaudet 98/05/11 10:49:21
Modified:src/ap ap_snprintf.c
Log:
Martin found the core dumping bug... it was my fault. psprintf()
could possibly set curpos == endpos + 1... and the old test for sp ==
bep would never find this case. As a result it would waltz past the
end of a b
jim 98/05/07 06:13:54
Modified:src/ap ap_snprintf.c
Log:
Seems silly to remove the decimal point if we
know we'll be adding it later
Revision ChangesPath
1.23 +31 -30apache-1.3/src/ap/ap_snprintf.c
Index: ap_snprintf.c
=
rse 98/05/07 02:39:43
Modified:src/ap ap_snprintf.c
Log:
Fix Martin's comitted "s != S_NULL & s != char_buf" to "s != S_NULL && s !=
char_buf" which is what he wanted to use but not typed.
Revision ChangesPath
1.22 +1 -1 apache-1.3/src/ap/ap_snprintf.c
martin 98/05/07 00:47:34
Modified:src/ap ap_snprintf.c
Log:
Avoid core dumps for bogus ap_snprintf() format strings by using more
defensive approach: never allow patching a prefix char in front of
a constant string (or in front of char_buf); delimit strchr() to not
scan past
16 matches
Mail list logo