X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit%2Fgroupdav_put.c;h=d79d17fa855b6e2280680f80a9089724aedb8f59;hp=48f0b4a8534fd90f74693504fe13210d11123d22;hb=8e165dd308679f195af8614d62dbdb4e43238495;hpb=3b0f83df92714f2657da0b738884adbd7d4bdc63 diff --git a/webcit/groupdav_put.c b/webcit/groupdav_put.c index 48f0b4a85..d79d17fa8 100644 --- a/webcit/groupdav_put.c +++ b/webcit/groupdav_put.c @@ -34,7 +34,7 @@ void groupdav_put_bigics(void) groupdav_common_headers(); hprintf("Content-type: text/plain\r\n"); begin_burst(); - wprintf("%s\r\n", &buf[4]); + wc_printf("%s\r\n", &buf[4]); end_burst(); return; } @@ -72,7 +72,7 @@ void groupdav_put(void) groupdav_common_headers(); hprintf("Content-Type: text/plain\r\n"); begin_burst(); - wprintf("The object you requested was not found.\r\n"); + wc_printf("The object you requested was not found.\r\n"); end_burst(); return; } @@ -95,7 +95,7 @@ void groupdav_put(void) groupdav_common_headers(); hprintf("Content-Type: text/plain\r\n"); begin_burst(); - wprintf("There is no folder called \"%s\" on this server.\r\n", + wc_printf("There is no folder called \"%s\" on this server.\r\n", ChrPtr(dav_roomname)); end_burst(); FreeStrBuf(&dav_roomname); @@ -148,7 +148,7 @@ void groupdav_put(void) groupdav_common_headers(); hprintf("Content-type: text/plain\r\n"); begin_burst(); - wprintf("%s\r\n", &buf[4]); + wc_printf("%s\r\n", &buf[4]); end_burst(); return; } @@ -185,7 +185,7 @@ void groupdav_put(void) groupdav_common_headers(); hprintf("Content-type: text/plain\r\n"); begin_burst(); - wprintf("new_msgnum is %ld\r\n" + wc_printf("new_msgnum is %ld\r\n" "\r\n", new_msgnum); end_burst(); FreeStrBuf(&dav_roomname);