Update of /cvsroot/mod-xhtml-neg/mod_xhtml_neg
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7025
Modified Files:
mod_xhtml_neg.c
Log Message:
Always pad out hash code to 8 digits.
Index: mod_xhtml_neg.c
===================================================================
RCS file: /cvsroot/mod-xhtml-neg/mod_xhtml_neg/mod_xhtml_neg.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** mod_xhtml_neg.c 12 Mar 2004 09:51:22 -0000 1.16
--- mod_xhtml_neg.c 12 Mar 2004 10:05:59 -0000 1.17
***************
*** 519,523 ****
}
! rec->hashcode = ap_psprintf(p, "\"%02x-%lx\"",
len, (unsigned long) hash);
}
--- 519,523 ----
}
! rec->hashcode = ap_psprintf(p, "\"%02x-%08lx\"",
len, (unsigned long) hash);
}
|