You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rampart-dev@ws.apache.org by pi...@apache.org on 2007/04/03 11:38:47 UTC

svn commit: r525114 - /webservices/rampart/trunk/c/src/util/rampart_context.c

Author: pini
Date: Tue Apr  3 02:38:46 2007
New Revision: 525114

URL: http://svn.apache.org/viewvc?view=rev&rev=525114
Log:
Fixing jira issue 292

Modified:
    webservices/rampart/trunk/c/src/util/rampart_context.c

Modified: webservices/rampart/trunk/c/src/util/rampart_context.c
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/src/util/rampart_context.c?view=diff&rev=525114&r1=525113&r2=525114
==============================================================================
--- webservices/rampart/trunk/c/src/util/rampart_context.c (original)
+++ webservices/rampart/trunk/c/src/util/rampart_context.c Tue Apr  3 02:38:46 2007
@@ -1350,7 +1350,7 @@
     if(!time_to_live)
         rampart_context->ttl = 300;
     else
-        rampart_context->ttl = axis2_atoi(time_to_live);
+        rampart_context->ttl = axutil_atoi(time_to_live);
 
     return AXIS2_SUCCESS;
 }