You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by se...@apache.org on 2008/03/10 20:15:04 UTC

svn commit: r635661 - /webservices/axis2/trunk/c/util/src/date_time.c

Author: senaka
Date: Mon Mar 10 12:15:01 2008
New Revision: 635661

URL: http://svn.apache.org/viewvc?rev=635661&view=rev
Log:
Fixing issue in specifying fractional seconds, that was limited to 0.9990, removed the limitation, and now you can have more decimal places

Modified:
    webservices/axis2/trunk/c/util/src/date_time.c

Modified: webservices/axis2/trunk/c/util/src/date_time.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/date_time.c?rev=635661&r1=635660&r2=635661&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/src/date_time.c (original)
+++ webservices/axis2/trunk/c/util/src/date_time.c Mon Mar 10 12:15:01 2008
@@ -117,7 +117,7 @@
     {
         return AXIS2_FAILURE;
     }
-    if (msec < 0 || msec > 999)
+    if (msec < 0)
     {
         return AXIS2_FAILURE;
     }
@@ -234,7 +234,7 @@
     {
         return AXIS2_FAILURE;
     }
-    if (msec < 0 || msec > 999)
+    if (msec < 0)
     {
         return AXIS2_FAILURE;
     }
@@ -378,7 +378,7 @@
     {
         return AXIS2_FAILURE;
     }
-    if (msec < 0 || msec > 999)
+    if (msec < 0)
     {
         return AXIS2_FAILURE;
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org