X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fdav_main.c;h=f923a37b715e6e614964345d8d7232920c139f4f;hb=efccdcf4db04e63bfa3512c80215357ee9ffd98f;hp=91610ac993a34247f43918630b00056ffa1effac;hpb=6124e82022a9b919529a4f1414349d3096fb839d;p=citadel.git diff --git a/webcit/dav_main.c b/webcit/dav_main.c index 91610ac99..f923a37b7 100644 --- a/webcit/dav_main.c +++ b/webcit/dav_main.c @@ -15,7 +15,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "webcit.h" @@ -170,8 +170,15 @@ void dav_main(void) case eDELETE: dav_delete(); break; - default: + /* + * The REPORT method tells us that Mike Shaver is a self-righteous asshole. + */ + case eREPORT: + dav_report(); + break; + + default: /* * Couldn't find what we were looking for. Die in a car fire. */