diff options
author | Thomas White <taw@bitwiz.org.uk> | 2009-11-08 20:32:35 +0100 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2009-11-08 20:32:35 +0100 |
commit | b7961c45556704596b51256d89535c057d4fd5f3 (patch) | |
tree | 033fe9097346b71fa71fd9821b9ca3e564371e42 | |
parent | f84cf6e1b0a6692e7e5a41b7133544265cefed49 (diff) |
Fix previous commit
-rw-r--r-- | src/glamo-kms-driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glamo-kms-driver.c b/src/glamo-kms-driver.c index f790576..f25ac42 100644 --- a/src/glamo-kms-driver.c +++ b/src/glamo-kms-driver.c @@ -111,7 +111,7 @@ Bool GlamoKernelModesettingAvailable() ent = readdir(dir); if ( !ent ) return FALSE; - if ( strncmp(ent->d_name, "drm:controlD", 12) == 0 ) { + if ( strncmp(ent->d_name, "controlD", 12) == 0 ) { closedir(dir); return TRUE; } |