aheinecke@452: /* Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik aheinecke@452: * Software engineering by Intevation GmbH aheinecke@452: * aheinecke@452: * This file is Free Software under the GNU GPL (v>=2) aheinecke@452: * and comes with ABSOLUTELY NO WARRANTY! aheinecke@452: * See LICENSE.txt for details. aheinecke@452: */ aheinecke@452: #include "sslhelp.h" aheinecke@452: aheinecke@452: QString getPolarSSLErrorMsg(int ret) aheinecke@452: { aheinecke@452: char errbuf[1020]; aheinecke@452: polarssl_strerror(ret, errbuf, 1020); aheinecke@452: errbuf[1020] = '\0'; /* Just to be sure */ aheinecke@452: return QString::fromLatin1(errbuf); aheinecke@452: }