From 16bd0a6ec2c9185249b4eb29169f5376306e8157 Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Mon, 10 Mar 2014 19:06:52 +0100 Subject: [PATCH] Fixed operator to combine flags. --- src/vmime/net/fetchAttributes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }