--- mod_dav-1.0.3-1.3.6/mod_dav.c Sun Sep 23 00:22:39 2001 +++ mod_dav-1.0.3-1.3.6.patched/mod_dav.c Tue Sep 17 21:45:42 2002 @@ -597,7 +597,14 @@ else { /* assume this includes and is quoted properly */ for (t = first->propresult.propstats; t; t = t->next) { - ap_rputs(t->text, r); +#if 1 + if (strstr(t->text, ":quotaused")) + ap_rputs("4096", r); + else if (strstr(t->text, ":quota")) + ap_rputs("4096000", r); + else +#endif + ap_rputs(t->text, r); } }