diff options
author | Rik Faith <faith@alephnull.com> | 2000-05-26 16:21:29 +0000 |
---|---|---|
committer | Rik Faith <faith@alephnull.com> | 2000-05-26 16:21:29 +0000 |
commit | d7cd954dd66edd305b50944b09447435adbed0fe (patch) | |
tree | 9017ffaa0bca3ee75da8bb5f17782452e8284de1 | |
parent | 837ea811fd6fe74ea05d5fef70cd6bae7bb49fe7 (diff) |
Allow root to pass magic authentication just like a regular user.
-rw-r--r-- | linux/auth.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/linux/auth.c b/linux/auth.c index a1f4d206..b133bc50 100644 --- a/linux/auth.c +++ b/linux/auth.c @@ -45,7 +45,6 @@ static drm_file_t *drm_find_file(drm_device_t *dev, drm_magic_t magic) down(&dev->struct_sem); for (pt = dev->magiclist[hash].head; pt; pt = pt->next) { - if (pt->priv->authenticated) continue; if (pt->magic == magic) { retval = pt->priv; break; |