diff -u xfstt-1.7/debian/control xfstt-1.7/debian/control --- xfstt-1.7/debian/control +++ xfstt-1.7/debian/control @@ -1,7 +1,8 @@ Source: xfstt Section: x11 Priority: extra -Maintainer: Guillem Jover +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Guillem Jover Homepage: http://developer.berlios.de/projects/xfstt/ Vcs-Browser: http://git.hadrons.org/?p=debian/pkgs/xfstt.git Vcs-Git: git://git.hadrons.org/git/debian/pkgs/xfstt.git diff -u xfstt-1.7/debian/changelog xfstt-1.7/debian/changelog --- xfstt-1.7/debian/changelog +++ xfstt-1.7/debian/changelog @@ -1,3 +1,11 @@ +xfstt (1.7-6ubuntu1) lucid; urgency=low + + * src/xfstt.cc: + - don't copy TTFNINFO into TTFNHeader's magic variable, it should be + broken into TTFN for magic and INFO for type. thanks to PCC (LP:#433146) + + -- Niall Creech Thu, 11 Feb 2010 11:18:15 +0000 + xfstt (1.7-6) unstable; urgency=low * Switch to debhelper compatibility level 7. only in patch2: unchanged: --- xfstt-1.7.orig/src/xfstt.cc +++ xfstt-1.7/src/xfstt.cc @@ -313,7 +313,8 @@ } TTFNheader info; - strncpy(info.magic, "TTFNINFO", 8); + strncpy(info.magic, "TTFN", 4); + strncpy(info.type, "INFO", 4); info.version = TTFN_VERSION; info.crc = 0; // XXX fwrite((void *)&info, 1, sizeof(info), infoFile);