git-svn-id: file:///var/lib/svn/clamav-devel/trunk/clamav-devel@1449 77e5149b-7576-45b1-b177-96237e5ba77b

Nigel Horne authored on 2005/04/03 06:18:48
Showing 1 changed files
... ...
@@ -15,7 +15,7 @@
15 15
  *  along with this program; if not, write to the Free Software
16 16
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 17
  */
18
-static	char	const	rcsid[] = "$Id: mbox.c,v 1.233 2005/03/28 11:03:14 nigelhorne Exp $";
18
+static	char	const	rcsid[] = "$Id: mbox.c,v 1.234 2005/04/02 21:18:48 nigelhorne Exp $";
19 19
 
20 20
 #if HAVE_CONFIG_H
21 21
 #include "clamav-config.h"
... ...
@@ -3790,7 +3790,8 @@ usefulHeader(int commandNumber, const char *cmd)
3790 3790
 }
3791 3791
 
3792 3792
 /*
3793
- * Save the uuencoded part of the file as it is read in
3793
+ * Save the uuencoded part of the file as it is read in since there's no need
3794
+ * to include it in the parse tree. Saves memory and parse time.
3794 3795
  */
3795 3796
 static void
3796 3797
 uufasttrack(message *m, const char *firstline, const char *dir, FILE *fin)
... ...
@@ -3800,7 +3801,7 @@ uufasttrack(message *m, const char *firstline, const char *dir, FILE *fin)
3800 3800
 	char *filename = cli_strtok(firstline, 2, " ");
3801 3801
 
3802 3802
 	fileblobSetFilename(fb, dir, filename);
3803
-	cli_dbgmsg("Fast track uuencode %s\n", filename);
3803
+	cli_dbgmsg("Fast track uudecode %s\n", filename);
3804 3804
 	free(filename);
3805 3805
 
3806 3806
 	while(fgets(buffer, sizeof(buffer) - 1, fin) != NULL) {