*** empty log message ***
authorArt Cancro <ajc@citadel.org>
Wed, 30 Mar 2005 17:34:35 +0000 (17:34 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 30 Mar 2005 17:34:35 +0000 (17:34 +0000)
webcit/groupdav_put.c

index ad5f6927ee2ae2dc5fa97486a6e389e0c2843b06..c6ced17b6429995e0d8cacbbdb5599afbc444e2c 100644 (file)
@@ -71,12 +71,12 @@ void groupdav_put(char *dav_pathname, char *dav_ifmatch,
                return;
        }
 
-       /* Ugly hack to mess with the content type.  KOrganizer is either
+       /**********************
+        * Ugly hack to mess with the content type.  KOrganizer is either
         * not supplying one, or supplying the wrong one.
-        * FIXME - remove this after KOrg gets fixed.
-        */
+        * (Commented out because Reinhold has fixed this bug in KOrg.)
        strcpy(dav_content_type, supplied_content_type);
-       /* lprintf(9, "Supplied content type: %s\n", dav_content_type); */
+       lprintf(9, "Supplied content type: %s\n", dav_content_type);
        switch (WC->wc_view) {
                case VIEW_ADDRESSBOOK:
                        strcpy(dav_content_type, "text/x-vcard");
@@ -90,7 +90,8 @@ void groupdav_put(char *dav_pathname, char *dav_ifmatch,
                default:
                        break;
        }
-       /* lprintf(9, "  Forced content type: %s\n", dav_content_type); */
+       lprintf(9, "  Forced content type: %s\n", dav_content_type);
+       ******************/
 
        /*
         * If an HTTP If-Match: header is present, the client is attempting