]> git.ipfire.org Git - thirdparty/HylaFAX.git/commitdiff
Bug 537: fix truncation of filenames in faxcron
authorLee Howard <faxguy@howardsilvan.com>
Thu, 26 Aug 2004 19:46:41 +0000 (19:46 +0000)
committerLee Howard <faxguy@howardsilvan.com>
Thu, 26 Aug 2004 19:46:41 +0000 (19:46 +0000)
CHANGES
CONTRIBUTORS
util/faxcron.sh.in

diff --git a/CHANGES b/CHANGES
index bbfc424ce287304a5f4f4b66752c919922ea80a4..2fa12dc36e4c71f671e51070798cb374f178aa76 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,7 @@
 
 Changelog for HylaFAX 4.2.1
 
+* fix truncation of filenames in faxcron (26 Aug 2004)
 * add configure support for libtiff 3.7 (25 Aug 2004)
 * extend short send-HDLC timeouts (18 Aug 2004)
 * add a pause after receiving MCF on non-ECM send sessions (18 Aug 2004)
index 87b11fb8bf357469155131e961f1c33cdd1523c7..f550b4a8385e9c0285febc18b4bb01526dcf7f4e 100644 (file)
@@ -50,20 +50,20 @@ Steffan Klipsch      Hannu Koivisto       Arjen de Korte
 Ken Lalonde          Ilguiz Latypov       Rob Leadbeater
 Guillaume Legoupil   Greg Luck            Pierluigi Mangani
 Campbell McKilligan  John Miller          Aldo Mini
-Seth Mos             Darren Nickerson     Giulio Orsero
-Chris Parsons        Michael Pedersen     John Perkins
-Simon Perry          Frank Peters         Vu Pham
-John Patrick Poet    Harald Pollack       Andreas Pretzsch
-Bernd Proissl        Matthew Rice         Tim Rice
-Daniel Robbins       Giuseppe Sacco       Michael Salzmann
-Sven Schmidt         John Sellens         Simon <iahnl@iah.nl>
-Vilmos Soti          Alan Sparks          Andy Sparrow
-Marco Steinacher     Iain Stevenson       Marius Strobl
-Kazuhide Takahashi   Daryl Thachuk        Steve Tuckner
-Aidan Van Dyk        Norbert Warmuth      Phil Watkinson
-James Werkowski      Chas Williams        John Williams
-Steve Williams       John Wolfe           Bill Young
-Bruce Young
+Boris Mironov        Seth Mos             Darren Nickerson
+Giulio Orsero        Chris Parsons        Michael Pedersen
+John Perkins         Simon Perry          Frank Peters
+Vu Pham              John Patrick Poet    Harald Pollack       
+Andreas Pretzsch     Bernd Proissl        Matthew Rice         
+Tim Rice             Daniel Robbins       Giuseppe Sacco       
+Michael Salzmann     Sven Schmidt         John Sellens         
+Simon <iahnl@iah.nl> Vilmos Soti          Alan Sparks          
+Andy Sparrow         Marco Steinacher     Iain Stevenson       
+Marius Strobl        Kazuhide Takahashi   Daryl Thachuk        
+Steve Tuckner        Aidan Van Dyk        Norbert Warmuth      
+Phil Watkinson       James Werkowski      Chas Williams        
+John Williams        Steve Williams       John Wolfe           
+Bill Young           Bruce Young
 
 We appreciate and recognize the upstreamed contributions from these 
 distributions:
index ffd06150b4801e1941d360b3940fe89c14ae8bb9..1bdcc366c5a4730e79ff0843ba04b52808f52b34 100644 (file)
@@ -422,7 +422,7 @@ if [ -s $JUNK ]; then
 /Received/     { date = $2;
                  for (i = 3; i <= NF; i++)
                      date = date ":" $i;
-                 printf "    %-16.16s %21.21s %2d %8s%s\n", \
+                 printf "    %-18.18s %21.21s %2d %8s%s\n", \
                        file, sender, pages, quality, date;
                }
 '