summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluther <luther@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-12-20 22:51:00 +0000
committerluther <luther@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-12-20 22:51:00 +0000
commitf4f9e886dbeb0bb569bf94fe9e0fbaa961410896 (patch)
tree1c4f60c2cf1a2ae166f41d7bf0cfa331989f97ca
parent7bc2f7d89f0e7ad5874f0043053c717d1694b3c6 (diff)
downloadATCD-f4f9e886dbeb0bb569bf94fe9e0fbaa961410896.tar.gz
Wed Dec 20 16:49:47 2000 Luther J Baker <luther@cs.wustl.edu>
-rw-r--r--PACE/ChangeLog7
-rw-r--r--PACE/tests/Stdio_Test.c4
2 files changed, 9 insertions, 2 deletions
diff --git a/PACE/ChangeLog b/PACE/ChangeLog
index bfe55805e5d..d188b972226 100644
--- a/PACE/ChangeLog
+++ b/PACE/ChangeLog
@@ -1,3 +1,10 @@
+Wed Dec 20 16:49:47 2000 Luther J Baker <luther@cs.wustl.edu>
+
+ * tests/Stdio_Test.c:
+
+ An innocent change :-/. Used pace_strcmp (...) instead of
+ strcmp. Had to include "pace/string.h".
+
Wed Dec 20 16:42:45 2000 Luther J Baker <luther@cs.wustl.edu>
* pace/socket.h:
diff --git a/PACE/tests/Stdio_Test.c b/PACE/tests/Stdio_Test.c
index c1c68b57279..e4249d83512 100644
--- a/PACE/tests/Stdio_Test.c
+++ b/PACE/tests/Stdio_Test.c
@@ -20,6 +20,7 @@
#include "pace/stdio.h"
#include "pace/unistd.h"
+#include "pace/string.h"
const char * filename = "temp";
const char * mode = "w+";
@@ -92,8 +93,7 @@ main (int argc, char **argv)
printf("pace_fgets %s\n", success);
- if (strcmp(buffer,
- string1) != 0)
+ if (pace_strcmp(buffer, string1) != 0)
{
printf("strcmp of pace_fgets %s\n", failure);
return -1;