diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-08-18 01:04:30 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-08-18 01:04:30 +0000 |
commit | 8c004a383f3a2c115553aec131b9fc223548202c (patch) | |
tree | 834c1f7f1c81194c7dfcc279c56699766d65f27a /test | |
parent | 1728b767f03e4b0129534a51638732519648abe8 (diff) |
remove some debug code
Diffstat (limited to 'test')
-rw-r--r-- | test/rpc/getrpcent_r.c | 3 |
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); |