summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-wsil.c
diff options
context:
space:
mode:
authorGravatar m0gg2006-11-25 16:35:57 +0000
committerGravatar m0gg2006-11-25 16:35:57 +0000
commit48873b11cc7f101bd5f3eb74fedacce40e73dd91 (patch)
tree7e7380515a35ec975ef7b57d6c38c0e7ec1d4c7b /libcsoap/soap-wsil.c
parent5518d08a6c6446e1323bb6f762ef9132a9856c1d (diff)
downloadcsoap-48873b11cc7f101bd5f3eb74fedacce40e73dd91.tar.gz
csoap-48873b11cc7f101bd5f3eb74fedacce40e73dd91.tar.bz2
Documentation enhancements
Diffstat (limited to 'libcsoap/soap-wsil.c')
-rw-r--r--libcsoap/soap-wsil.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcsoap/soap-wsil.c b/libcsoap/soap-wsil.c
index 2a11130..f4960ef 100644
--- a/libcsoap/soap-wsil.c
+++ b/libcsoap/soap-wsil.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: soap-wsil.c,v 1.3 2006/11/25 15:06:58 m0gg Exp $
+* $Id: soap-wsil.c,v 1.4 2006/11/25 16:35:57 m0gg Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -84,7 +84,7 @@ static void
_soap_wsil_handle_get(httpd_conn_t * conn, struct hrequest_t * req)
{
httpd_set_header(conn, HEADER_CONTENT_TYPE, "text/xml");
- httpd_send_header(conn, 200, "OK");
+ httpd_send_header(conn, 200, HTTP_STATUS_200_REASON_PHRASE);
http_output_stream_write_string(conn->out,
"<?xml version=\"1.0\" encoding=\"utf-8\"?>"
@@ -108,7 +108,7 @@ _soap_wsil_entry(httpd_conn_t * conn, struct hrequest_t * req)
}
else
{
- httpd_send_header(conn, 200, "OK");
+ httpd_send_header(conn, 200, HTTP_STATUS_200_REASON_PHRASE);
http_output_stream_write_string(conn->out,
"<html>"
"<head>"