diff -Nru /tmp/GGWxiY9PoT/xresprobe-0.4.24ubuntu5/debian/changelog /tmp/DA1z4zy1F1/xresprobe-0.4.24ubuntu6/debian/changelog --- /tmp/GGWxiY9PoT/xresprobe-0.4.24ubuntu5/debian/changelog 2007-09-28 03:19:55.000000000 +0200 +++ /tmp/DA1z4zy1F1/xresprobe-0.4.24ubuntu6/debian/changelog 2007-10-06 10:58:08.000000000 +0200 @@ -1,3 +1,10 @@ +xresprobe (0.4.24ubuntu6) gutsy; urgency=low + + * lcdsize.sh: fix sed regexp so that resolutions are returned + correctly without trailing text (LP: #148231) + + -- Tormod Volden Sat, 6 Oct 2007 10:55:46 +0200 + xresprobe (0.4.24ubuntu5) gutsy; urgency=low * xorg.conf: Fix xprobe.sh failure caused by missing type1 module; diff -Nru /tmp/GGWxiY9PoT/xresprobe-0.4.24ubuntu5/lcdsize.sh /tmp/DA1z4zy1F1/xresprobe-0.4.24ubuntu6/lcdsize.sh --- /tmp/GGWxiY9PoT/xresprobe-0.4.24ubuntu5/lcdsize.sh 2007-08-10 22:09:08.000000000 +0200 +++ /tmp/DA1z4zy1F1/xresprobe-0.4.24ubuntu6/lcdsize.sh 2007-10-06 10:58:54.000000000 +0200 @@ -115,7 +115,7 @@ getres elif [ "$DRIVER" = "vesa" ]; then EGREPLINE="\(--\) VESA\(.*\): Virtual size is .*x.*" - SEDLINE="s/(--) VESA([^)]*): Virtual size is \([^x]*\)x\([^ ]*\)/\1x\2/;" + SEDLINE="s/(--) VESA([^)]*): Virtual size is \([^x]*\)x\([^ ]*\).*/\1x\2/;" getres else exit 1