From 313e3f2e656110cd4b67d526df04d9cb3afee1e7 Mon Sep 17 00:00:00 2001 From: mrcsys Date: Fri, 27 Jan 2006 20:23:39 +0000 Subject: Fixed two buffer overflow problems. This results in different deffinitions for soap_env_find_urn() and soap_env_find_methodname() --- libcsoap/soap-env.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libcsoap/soap-env.h') diff --git a/libcsoap/soap-env.h b/libcsoap/soap-env.h index 72dd999..36305e1 100644 --- a/libcsoap/soap-env.h +++ b/libcsoap/soap-env.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: soap-env.h,v 1.11 2006/01/10 11:29:04 snowdrop Exp $ + * $Id: soap-env.h,v 1.12 2006/01/27 20:23:40 mrcsys Exp $ * * CSOAP Project: A SOAP client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -326,8 +326,8 @@ xmlNodePtr soap_env_get_fault(SoapEnv * env); xmlNodePtr soap_env_get_header(SoapEnv * env); -int soap_env_find_urn(SoapEnv * env, char *urn); -int soap_env_find_methodname(SoapEnv * env, char *methodname); +char * soap_env_find_urn(SoapEnv * env); +char * soap_env_find_methodname(SoapEnv * env); -- cgit v1.1-32-gdbae