summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2007-08-15 13:13:24 -0700
committerEric Anholt <eric@anholt.net>2007-08-15 13:13:24 -0700
commit8a1ca401b403848d894f664977f9e939eaf07291 (patch)
tree7b52c9790efbf2d74750161defb91d252f6c29e7
parentd1a2b26a99205b802919aa0901b4e19cb2d251fe (diff)
Fix a bad error message in auth.c regression test.
-rw-r--r--tests/auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auth.c b/tests/auth.c
index 45265d6c..4160d1de 100644
--- a/tests/auth.c
+++ b/tests/auth.c
@@ -108,7 +108,7 @@ static void server()
ret = ioctl(drmfd, DRM_IOCTL_AUTH_MAGIC, &auth);
if (ret == -1)
- err(1, "Authenticating bad magic succeeded\n");
+ err(1, "Failure to authenticate client magic\n");
wait_event(1, CLIENT_DONE);
}