diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2004-04-27 17:33:59 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2004-04-27 17:33:59 +0000 |
commit | 32321488ab9c73439a323a363c6762364dc7c2cf (patch) | |
tree | 34ed6d74f8ece98ad8d6aea64e70c22aa007e779 /ext/xmlrpc/libxmlrpc/xmlrpc.c | |
parent | 11690da1647d2ea06e39fa06c4c2c412ac2dda40 (diff) | |
download | php-git-32321488ab9c73439a323a363c6762364dc7c2cf.tar.gz |
Removed C++ style comments.
Diffstat (limited to 'ext/xmlrpc/libxmlrpc/xmlrpc.c')
-rw-r--r-- | ext/xmlrpc/libxmlrpc/xmlrpc.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/xmlrpc/libxmlrpc/xmlrpc.c b/ext/xmlrpc/libxmlrpc/xmlrpc.c index bb3e6e379b..1fbb4a7ec3 100644 --- a/ext/xmlrpc/libxmlrpc/xmlrpc.c +++ b/ext/xmlrpc/libxmlrpc/xmlrpc.c @@ -43,6 +43,9 @@ static const char rcsid[] = "#(@) $Id$"; * 9/1999 - 10/2000 * HISTORY * $Log$ + * Revision 1.5 2003/12/16 21:00:21 sniper + * Fix some compile warnings (patch by Joe Orton) + * * Revision 1.4 2002/07/05 04:43:53 danda * merged in updates from SF project. bring php repository up to date with xmlrpc-epi version 0.51 * @@ -221,7 +224,7 @@ static int date_from_ISO8601 (const char *text, time_t * value) { static int date_to_ISO8601 (time_t value, char *buf, int length) { struct tm *tm; tm = localtime(&value); -#if 0 // TODO: soap seems to favor this method. xmlrpc the latter. +#if 0 /* TODO: soap seems to favor this method. xmlrpc the latter. */ return strftime (buf, length, "%Y-%m-%dT%H:%M:%SZ", tm); #else return strftime(buf, length, "%Y%m%dT%H:%M:%S", tm); @@ -987,7 +990,7 @@ int XMLRPC_SetIsVector(XMLRPC_VALUE value, XMLRPC_VECTOR_TYPE type) { int bSuccess = 0; if (value) { - // we can change the type so long as nothing is currently stored. + /* we can change the type so long as nothing is currently stored. */ if(value->type == xmlrpc_vector) { if(value->v) { if(!Q_Size(value->v->q)) { |