summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/rpc/getrpcent_r.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/rpc/getrpcent_r.c b/test/rpc/getrpcent_r.c
index 29cd5c278..708deba10 100644
--- a/test/rpc/getrpcent_r.c
+++ b/test/rpc/getrpcent_r.c
@@ -5,9 +5,8 @@
int main(int argc, char *argv[])
{
int ret;
- char rpcdata[10024];
+ char rpcdata[1024];
struct rpcent rpcbuf, *ent;
-memset(rpcdata, 0x00, sizeof(rpcdata));
while ((ret = getrpcent_r(&rpcbuf, rpcdata, sizeof(rpcdata), &ent)) == 0) {
printf("%s: %i", ent->r_name, ent->r_number);