diff options
author | Eric Anholt <eric@anholt.net> | 2007-08-15 13:13:24 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2007-08-15 13:13:24 -0700 |
commit | 8a1ca401b403848d894f664977f9e939eaf07291 (patch) | |
tree | 7b52c9790efbf2d74750161defb91d252f6c29e7 | |
parent | d1a2b26a99205b802919aa0901b4e19cb2d251fe (diff) | |
download | libdrm-8a1ca401b403848d894f664977f9e939eaf07291.tar.gz libdrm-8a1ca401b403848d894f664977f9e939eaf07291.tar.bz2 libdrm-8a1ca401b403848d894f664977f9e939eaf07291.zip |
Fix a bad error message in auth.c regression test.
-rw-r--r-- | tests/auth.c | 2 |
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); } |