use correct initialization value of true (false is wrong, and earlier we

were uninitialized which has a 99% chance of being true :))

svn path=/trunk/kdesupport/qca/; revision=734096
This commit is contained in:
Justin Karneges 2007-11-08 04:03:06 +00:00
parent 9a935345c3
commit fdbdb4f1f2

View File

@ -828,7 +828,7 @@ public:
virtual void update(const QByteArray &from_net, const QByteArray &from_app)
{
bool ok = false;
bool ok = true;
if(!from_app.isEmpty())
ok = sasl_endecode(from_app, &result_to_net, true);
if(ok && !from_net.isEmpty())