Author: branden Date: 2004-03-02 02:13:18 -0500 (Tue, 02 Mar 2004) New Revision: 1121
Modified: trunk/debian/changelog trunk/debian/xserver-xfree86.bug Log: Invoke printf with only one format string argument. Modified: trunk/debian/changelog =================================================================== --- trunk/debian/changelog 2004-03-01 20:52:33 UTC (rev 1120) +++ trunk/debian/changelog 2004-03-02 07:13:18 UTC (rev 1121) @@ -19,8 +19,11 @@ Fischer). - debian/patches/000_stolen_from_HEAD.diff - -- Branden Robinson <[EMAIL PROTECTED]> Mon, 1 Mar 2004 15:47:56 -0500 + * Invoke printf with only one format string argument. + - debian/xserver-xfree86.bug + -- Branden Robinson <[EMAIL PROTECTED]> Tue, 2 Mar 2004 02:12:35 -0500 + xfree86 (4.3.0-3) unstable; urgency=medium * Urgency due to fix for serious bug which frustrates removal of library Modified: trunk/debian/xserver-xfree86.bug =================================================================== --- trunk/debian/xserver-xfree86.bug 2004-03-01 20:52:33 UTC (rev 1120) +++ trunk/debian/xserver-xfree86.bug 2004-03-02 07:13:18 UTC (rev 1121) @@ -28,11 +28,11 @@ if [ -e "$SERVER_SYMLINK_CHECKSUM" ]; then if [ "$(readlink "$SERVER_SYMLINK" | md5sum)" = \ "$(cat "$SERVER_SYMLINK_CHECKSUM")" ]; then - printf "$SERVER_SYMLINK target unchanged from checksum in" \ - "$SERVER_SYMLINK_CHECKSUM.\n" >&3 + printf "%s target unchanged from checksum in %s.\n" \ + "$SERVER_SYMLINK" "$SERVER_SYMLINK_CHECKSUM" >&3 else - printf "$SERVER_SYMLINK target does not match checksum in" \ - "$SERVER_SYMLINK_CHECKSUM.\n" >&3 + printf "%s target does not match checksum in %s.\n" \ + "$SERVER_SYMLINK" "$SERVER_SYMLINK_CHECKSUM" >&3 fi else printf "$SERVER_SYMLINK_CHECKSUM does not exist.\n" >&3