aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rwxr-xr-xmonitor-probe-using-X2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 95e50ca..505c945 100644
--- a/NEWS
+++ b/NEWS
@@ -41,6 +41,9 @@
o add --first support for stopping processing after one EDID has been
found
+- monitor-probe-using-X:
+ o accept EDID data that contains extension blocks
+
Version 2.5 - 18 October 2009, by Anssi Hannula
- monitor-probe-using-X:
diff --git a/monitor-probe-using-X b/monitor-probe-using-X
index 07ccd59..3af8eb4 100755
--- a/monitor-probe-using-X
+++ b/monitor-probe-using-X
@@ -119,7 +119,7 @@ sub parse_X_log_edids {
while ($log =~ /: EDID \(in hex\):\n((.*\n){8})/g) {
my @lines = split '\n', $1;
my $edid = join('', map { /:\s+([0-9a-f]{32})$/ && $1 } @lines);
- if (length $edid == 256) {
+ if (length($edid) % 256 == 0) {
@edids = uniq(@edids, $edid);
} else {
warn "bad EDID found\n";