From 8a6946b18003fae6400a137389f0cb13d0ac4bd6 Mon Sep 17 00:00:00 2001 From: m0gg Date: Sat, 3 Nov 2007 22:40:09 +0000 Subject: Split nanoHTTP and cSOAP logging --- libcsoap/soap-ctx.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libcsoap/soap-ctx.c') diff --git a/libcsoap/soap-ctx.c b/libcsoap/soap-ctx.c index 4d595f4..3adbc5e 100755 --- a/libcsoap/soap-ctx.c +++ b/libcsoap/soap-ctx.c @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: soap-ctx.c,v 1.14 2006/11/25 15:06:57 m0gg Exp $ + * $Id: soap-ctx.c,v 1.15 2007/11/03 22:40:09 m0gg Exp $ * * CSOAP Project: A SOAP client/server library in C * Copyright (C) 2003-2004 Ferhat Ayaz @@ -45,8 +45,8 @@ #include #include -#include +#include "soap-logging.h" #include "soap-fault.h" #include "soap-env.h" #include "soap-ctx.h" @@ -58,7 +58,7 @@ soap_ctx_new(struct SoapEnv * env) /* should only be used internally */ if (!(ctx = (struct SoapCtx *) malloc(sizeof(struct SoapCtx)))) { - log_error2("malloc failed (%s)", strerror(errno)); + log_error("malloc failed (%s)", strerror(errno)); return NULL; } -- cgit v1.1-32-gdbae