cvs commit: apache-1.3/src/ap ap_snprintf.c

1999-11-28 Thread rse
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:

cvs commit: apache-1.3/src/ap ap_snprintf.c

1999-11-28 Thread rse
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

cvs commit: apache-1.3/src/ap ap_snprintf.c

1999-11-28 Thread jim
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

cvs commit: apache-1.3/src/ap ap_snprintf.c

1999-08-06 Thread coar
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

cvs commit: apache-1.3/src/ap ap_snprintf.c

1999-05-23 Thread jim
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:

cvs commit: apache-1.3/src/ap ap_snprintf.c

1999-05-22 Thread jim
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 ===

cvs commit: apache-1.3/src/ap ap_snprintf.c

1999-05-22 Thread jim
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

cvs commit: apache-1.3/src/ap ap_snprintf.c

1999-05-22 Thread jim
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

cvs commit: apache-1.3/src/ap ap_snprintf.c

1999-05-22 Thread jim
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:

cvs commit: apache-1.3/src/ap ap_snprintf.c

1999-05-22 Thread jim
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 sense,

cvs commit: apache-1.3/src/ap ap_snprintf.c

1999-05-21 Thread jim
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

cvs commit: apache-1.3/src/ap ap_snprintf.c

1998-05-11 Thread dgaudet
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

cvs commit: apache-1.3/src/ap ap_snprintf.c

1998-05-07 Thread rse
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

cvs commit: apache-1.3/src/ap ap_snprintf.c

1998-05-07 Thread jim
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