1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
--- dw_filter.c.orig Thu Sep 27 01:00:46 2001
+++ dw_filter.c Wed Oct 3 23:05:43 2001
@@ -606,7 +606,7 @@
}
else
{
- wprintLib( "block proccessing from <>" );
+ wprintLib( "block processing from <>" );
free_private_data( priv );
if( set_private_data( context, NULL ) != MI_SUCCESS )
{
@@ -621,7 +621,7 @@
wprintLib( "%s(%d) - no memory for private data", __FILE__, __LINE__ );
FAIL_EXIT( context, priv );
}
- wprintLib( "start proccessing from %s", priv->from );
+ wprintLib( "start processing from %s", priv->from );
priv->fname_tmp = strdup( ShareTemplate );
if( !priv->fname_tmp )
{
@@ -906,7 +906,8 @@
if( plog )
{
len = snprintf( NotifyMsg, sizeof(NotifyMsg),
- "Message sent from %s infected by virus and has not been delivered.\r\n"
+ "Message sent from %s\r\n"
+ "infected by virus and has not been delivered.\r\n"
"Diagnostic:\r\n%s\r\n"
"Original message was stored in the archive.\r\n"
"Archive record: %s\r\n"
@@ -917,7 +918,8 @@
else
{
len = snprintf( NotifyMsg, sizeof(NotifyMsg),
- "Message sent from %s infected by virus and has not been delivered.\r\n"
+ "Message sent from %s\r\n"
+ "infected by virus and has not been delivered.\r\n"
"Original message was stored in the archive.\r\n"
"Archive record: %s\r\n"
"To receive original message please contact postmaster:\r\n%s\r\n\r\n"
@@ -983,7 +985,7 @@
}
else
{
- wprintLib( "message sent by %s is okey.\n", priv->from );
+ wprintLib( "message sent by %s is okay.\n", priv->from );
exit_code = SMFIS_ACCEPT;
}
if( bLocal && (virus == 0) && (exit_code == SMFIS_ACCEPT) && (status & DERR_EVAL_KEY) && (priv->body_offset > 0) )
|