Browse code

Remove handling of 8bit binhex files for now

git-svn: trunk@231

Nigel Horne authored on 2004/02/03 00:52:09
Showing 1 changed files
... ...
@@ -17,6 +17,9 @@
17 17
  *
18 18
  * Change History:
19 19
  * $Log: message.c,v $
20
+ * Revision 1.19  2004/02/02 15:52:09  nigelhorne
21
+ * Remove handling of 8bit binhex files for now
22
+ *
20 23
  * Revision 1.18  2004/02/02 15:30:54  nigelhorne
21 24
  * Remove handling of 8bit binhex files for now
22 25
  *
... ...
@@ -51,7 +54,7 @@
51 51
  * uuencodebegin() no longer static
52 52
  *
53 53
  */
54
-static	char	const	rcsid[] = "$Id: message.c,v 1.18 2004/02/02 15:30:54 nigelhorne Exp $";
54
+static	char	const	rcsid[] = "$Id: message.c,v 1.19 2004/02/02 15:52:09 nigelhorne Exp $";
55 55
 
56 56
 #ifndef	CL_DEBUG
57 57
 /*#define	NDEBUG	/* map CLAMAV debug onto standard */
... ...
@@ -634,7 +637,6 @@ messageToBlob(const message *m)
634 634
 		 * the encoded message. Then decode that blob to the target
635 635
 		 * blob, free the temporary blob adn return the target one
636 636
 		 */
637
-
638 637
 		while((t_line = t_line->t_next) != NULL) {
639 638
 			blobAddData(tmp, (unsigned char *)t_line->t_text, strlen(t_line->t_text));
640 639
 			blobAddData(tmp, (unsigned char *)"\n", 1);