Check-in Number:
|
796 | |
Date: |
2001-Aug-30 12:42:24 (local)
2001-Aug-30 10:42:24 (UTC) |
User: | simons |
Branch: | |
Comment: |
Removed unnecessary debug output. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/xds/xds_test_lib.c 1.6 -> 1.7
--- xds_test_lib.c 2001/08/23 08:41:34 1.6
+++ xds_test_lib.c 2001/08/30 10:42:24 1.7
@@ -693,7 +693,6 @@
return 1;
}
xds_destroy(xds);
- printf("The encoded representation is %u bytes long.\n", buffer_size);
/* Now create a decoding context and decode the whole thing again. */
xds = xds_init(XDS_DECODE);
|
|
ossp-pkg/xds/xds_test_xml.c 1.4 -> 1.5
--- xds_test_xml.c 2001/08/12 11:31:45 1.4
+++ xds_test_xml.c 2001/08/30 10:42:24 1.5
@@ -469,8 +469,6 @@
return 1;
}
xds_destroy(xds);
- write(1, buffer, buffer_size);
- printf("\n");
xds = xds_init(XDS_DECODE);
if (xds == NULL) {
@@ -542,8 +540,6 @@
return 1;
}
xds_destroy(xds);
- write(1, buffer, buffer_size);
- printf("\n");
xds = xds_init(XDS_DECODE);
if (xds == NULL) {
@@ -616,8 +612,6 @@
return 1;
}
xds_destroy(xds);
- write(1, buffer, buffer_size);
- printf("\n");
xds = xds_init(XDS_DECODE);
if (xds == NULL) {
@@ -690,8 +684,6 @@
return 1;
}
xds_destroy(xds);
- write(1, buffer, buffer_size);
- printf("\n");
xds = xds_init(XDS_DECODE);
if (xds == NULL) {
|
|