diff options
| author | Ezra Peisach <epeisach@mit.edu> | 2001-07-09 15:33:44 +0000 |
|---|---|---|
| committer | Ezra Peisach <epeisach@mit.edu> | 2001-07-09 15:33:44 +0000 |
| commit | f99af24683e19c8a01d46298db9b4a99a9207fee (patch) | |
| tree | f1d1c88920815c61b77e26869f0b4ecda108b62b /src/lib/rpc/unit-test | |
| parent | 33c68e89ac14ffd2108b6a3bd0ac5c934e2a7813 (diff) | |
| download | krb5-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/lib/rpc/unit-test')
| -rw-r--r-- | src/lib/rpc/unit-test/ChangeLog | 5 | ||||
| -rw-r--r-- | src/lib/rpc/unit-test/rpc_test_clnt.c | 1 | ||||
| -rw-r--r-- | src/lib/rpc/unit-test/rpc_test_svc.c | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/rpc/unit-test/ChangeLog b/src/lib/rpc/unit-test/ChangeLog index dd63952d5..654060a55 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 801f43d79..736392551 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 0146784ae..4200d955c 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> |
