summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorGravatar snowdrop2004-08-30 07:55:41 +0000
committerGravatar snowdrop2004-08-30 07:55:41 +0000
commit632b4b8564290bae074cf95ca91b90256101fd9d (patch)
tree2a213a11db1515f42d34bd2f1dc3a7cf7162b112 /examples
parent5673c701448b9dfeb2bcf78fbdeeeff0089dd446 (diff)
downloadcsoap-632b4b8564290bae074cf95ca91b90256101fd9d.tar.gz
csoap-632b4b8564290bae074cf95ca91b90256101fd9d.tar.bz2
fixed some bugs corresponding win32 port code
Diffstat (limited to 'examples')
-rw-r--r--examples/csoap/simpleserver.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/csoap/simpleserver.c b/examples/csoap/simpleserver.c
index 0a3d434..1fb77a0 100644
--- a/examples/csoap/simpleserver.c
+++ b/examples/csoap/simpleserver.c
@@ -1,5 +1,5 @@
/******************************************************************
- * $Id: simpleserver.c,v 1.2 2004/05/12 22:19:13 snowdrop Exp $
+ * $Id: simpleserver.c,v 1.3 2004/08/30 07:55:41 snowdrop Exp $
*
* CSOAP Project: CSOAP examples project
* Copyright (C) 2003 Ferhat Ayaz
@@ -77,9 +77,9 @@ int main(int argc, char *argv[])
return 0;
}
- router = soap_router_new();
- soap_router_register_service(router, say_hello, method, urn);
- soap_server_register_router(router, url);
+ router = soap_router_new();
+ soap_router_register_service(router, say_hello, method, urn);
+ soap_server_register_router(router, url);
log_info1("send SIGTERM to shutdown");
soap_server_run();