Tiny fix to correct a reporter message.

This commit is contained in:
Seth Hall 2013-08-21 19:11:34 -04:00
parent 23027d3b3f
commit b3a5c5f412

View file

@ -27,7 +27,9 @@ export {
event mime_begin_entity(c: connection) &priority=10 event mime_begin_entity(c: connection) &priority=10
{ {
if ( c?$smtp )
c$smtp$entity = Entity(); c$smtp$entity = Entity();
if ( c?$smtp_state )
++c$smtp_state$mime_depth; ++c$smtp_state$mime_depth;
} }