summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2001-07-09 15:33:44 +0000
committerEzra Peisach <epeisach@mit.edu>2001-07-09 15:33:44 +0000
commitf99af24683e19c8a01d46298db9b4a99a9207fee (patch)
treef1d1c88920815c61b77e26869f0b4ecda108b62b /src
parent33c68e89ac14ffd2108b6a3bd0ac5c934e2a7813 (diff)
downloadkrb5-f99af24683e19c8a01d46298db9b4a99a9207fee.tar.gz
krb5-f99af24683e19c8a01d46298db9b4a99a9207fee.tar.xz
krb5-f99af24683e19c8a01d46298db9b4a99a9207fee.zip
* rpc_test_clnt.c, rpc_test_svc.c: Include string.h for memset
prototype. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13594 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/lib/rpc/unit-test/ChangeLog5
-rw-r--r--src/lib/rpc/unit-test/rpc_test_clnt.c1
-rw-r--r--src/lib/rpc/unit-test/rpc_test_svc.c1
3 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/rpc/unit-test/ChangeLog b/src/lib/rpc/unit-test/ChangeLog
index dd63952d56..654060a55f 100644
--- a/src/lib/rpc/unit-test/ChangeLog
+++ b/src/lib/rpc/unit-test/ChangeLog
@@ -1,3 +1,8 @@
+2001-07-09 Ezra Peisach <epeisach@mit.edu>
+
+ * rpc_test_clnt.c, rpc_test_svc.c: Include string.h for memset
+ prototype.
+
2001-07-02 Ezra Peisach <epeisach@mit.edu>
* rpc_test_svc.c: Change rpc_test_prog_1 to
diff --git a/src/lib/rpc/unit-test/rpc_test_clnt.c b/src/lib/rpc/unit-test/rpc_test_clnt.c
index 801f43d79e..7363925517 100644
--- a/src/lib/rpc/unit-test/rpc_test_clnt.c
+++ b/src/lib/rpc/unit-test/rpc_test_clnt.c
@@ -1,4 +1,5 @@
#include "rpc_test.h"
+#include <string.h>
/* Default timeout can be changed using clnt_control() */
static struct timeval TIMEOUT = { 25, 0 };
diff --git a/src/lib/rpc/unit-test/rpc_test_svc.c b/src/lib/rpc/unit-test/rpc_test_svc.c
index 0146784aeb..4200d955c2 100644
--- a/src/lib/rpc/unit-test/rpc_test_svc.c
+++ b/src/lib/rpc/unit-test/rpc_test_svc.c
@@ -1,5 +1,6 @@
#include "rpc_test.h"
#include <stdio.h>
+#include <string.h>
#include <stdlib.h> /* getenv, exit */
#include <sys/types.h>
#include <syslog.h>