aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/spray
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2002-07-15 18:53:52 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2002-07-15 18:53:52 +0000
commit5a9d606d4b9fc92d98d5b531f5ab3f7f0f5c7aea (patch)
treed0f20a602094bf34653afd550a146853fe0f1330 /usr.sbin/spray
parentaf37179b5f735b7f12285fb1dcf700016751c0f6 (diff)
downloadsrc-5a9d606d4b9fc92d98d5b531f5ab3f7f0f5c7aea.tar.gz
src-5a9d606d4b9fc92d98d5b531f5ab3f7f0f5c7aea.zip
do not call clnt_spcreateerror nor clnt_sperror with a NULL pointer, instead
pass an empty string. Submitted by: Jean-Luc Richier <Jean-Luc.Richier@imag.fr>
Notes
Notes: svn path=/head/; revision=100121
Diffstat (limited to 'usr.sbin/spray')
-rw-r--r--usr.sbin/spray/spray.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/spray/spray.c b/usr.sbin/spray/spray.c
index 39759eb3a10e..0e072e20ab27 100644
--- a/usr.sbin/spray/spray.c
+++ b/usr.sbin/spray/spray.c
@@ -123,7 +123,7 @@ main(int argc, char *argv[])
/* create connection with server */
cl = clnt_create(*argv, SPRAYPROG, SPRAYVERS, "udp");
if (cl == NULL)
- errx(1, "%s", clnt_spcreateerror(NULL));
+ errx(1, "%s", clnt_spcreateerror(""));
/*
@@ -139,7 +139,7 @@ main(int argc, char *argv[])
/* Clear server statistics */
if (clnt_call(cl, SPRAYPROC_CLEAR, (xdrproc_t)xdr_void, NULL,
(xdrproc_t)xdr_void, NULL, TIMEOUT) != RPC_SUCCESS)
- errx(1, "%s", clnt_sperror(cl, NULL));
+ errx(1, "%s", clnt_sperror(cl, ""));
/* Spray server with packets */
@@ -160,7 +160,7 @@ main(int argc, char *argv[])
/* Collect statistics from server */
if (clnt_call(cl, SPRAYPROC_GET, (xdrproc_t)xdr_void, NULL,
(xdrproc_t)xdr_spraycumul, &host_stats, TIMEOUT) != RPC_SUCCESS)
- errx(1, "%s", clnt_sperror(cl, NULL));
+ errx(1, "%s", clnt_sperror(cl, ""));
xmit_time = host_stats.clock.sec +
(host_stats.clock.usec / 1000000.0);