aboutsummaryrefslogtreecommitdiffstats
path: root/src/encoderFactory.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2006-08-25 14:36:44 +0000
committerVincent Richard <[email protected]>2006-08-25 14:36:44 +0000
commit29df79e4e5c9a428105856844f791f3c0f20c1d2 (patch)
tree03bc40620cb160e39f2b6e6bef17ed3da0dfd4a8 /src/encoderFactory.cpp
parentDo not treat attached text files as text parts. (diff)
downloadvmime-29df79e4e5c9a428105856844f791f3c0f20c1d2.tar.gz
vmime-29df79e4e5c9a428105856844f791f3c0f20c1d2.zip
Fixed parsing when space occurs at the end of the field value.
Diffstat (limited to 'src/encoderFactory.cpp')
-rw-r--r--src/encoderFactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/encoderFactory.cpp b/src/encoderFactory.cpp
index 2284b54e..38849641 100644
--- a/src/encoderFactory.cpp
+++ b/src/encoderFactory.cpp
@@ -77,7 +77,7 @@ const ref <const encoderFactory::registeredEncoder> encoderFactory::getEncoderBy
return (*it);
}
- throw exceptions::no_encoder_available();
+ throw exceptions::no_encoder_available(name);
}