diff options
author | Vincent Richard <[email protected]> | 2014-03-10 18:06:52 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2014-03-10 18:06:52 +0000 |
commit | 16bd0a6ec2c9185249b4eb29169f5376306e8157 (patch) | |
tree | 7d724fdd2f6853d731a553d969d37b9c4ca4b680 | |
parent | Default timeout handler. Fixed spelling. (diff) | |
download | vmime-16bd0a6ec2c9185249b4eb29169f5376306e8157.tar.gz vmime-16bd0a6ec2c9185249b4eb29169f5376306e8157.zip |
Fixed operator to combine flags.
-rw-r--r-- | src/vmime/net/fetchAttributes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vmime/net/fetchAttributes.cpp b/src/vmime/net/fetchAttributes.cpp index 85a41b8c..d499674c 100644 --- a/src/vmime/net/fetchAttributes.cpp +++ b/src/vmime/net/fetchAttributes.cpp @@ -60,7 +60,7 @@ fetchAttributes::fetchAttributes(const fetchAttributes& attribs) void fetchAttributes::add(const int attribs) { - m_predefinedAttribs = attribs; + m_predefinedAttribs |= attribs; } |