ossp-pkg/xds/decode.c  1.1 -> 1.2
| | --- decode.c     2001/07/04 15:58:51     1.1
+++ decode.c     2001/07/09 19:00:44     1.2
@@ -29,5 +29,10 @@
 
 int xds_decode(xds_t* xds, const char* fmt, ...)
     {
-    return XDS_ERR_INVALID_ARG;
+    int rc;
+    va_list args;
+    va_start(args, fmt);
+    rc = xds_vdecode(xds, fmt, args);
+    va_end(args);
+    return rc;
     }
 | 
 |