Merge pull request #3569 from nextcloud/bugfix/fixPermissionsLog

print the real permissions string instead of its address
This commit is contained in:
Matthieu Gallien 2021-07-21 10:39:10 +02:00 committed by GitHub
commit 58cf46f435
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,7 +99,7 @@ public:
friend QDebug operator<<(QDebug &dbg, RemotePermissions p)
{
return dbg << p.toString().constData();
return dbg << p.toString();
}
};