OSDN Git Service

Fix a bad error message in auth.c regression test.
authorEric Anholt <eric@anholt.net>
Wed, 15 Aug 2007 20:13:24 +0000 (13:13 -0700)
committerEric Anholt <eric@anholt.net>
Wed, 15 Aug 2007 20:13:24 +0000 (13:13 -0700)
tests/auth.c

index 45265d6..4160d1d 100644 (file)
@@ -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);
 }