summaryrefslogtreecommitdiffstats
path: root/tdecore/tdehw/tdestoragedevice.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-02-25 18:44:37 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-02-25 18:44:37 +0900
commit706098c452fbe8a0626e46279e9f16b773679af7 (patch)
treefad7331a90320ca1c6547ef7a2639f6d7b44a40b /tdecore/tdehw/tdestoragedevice.cpp
parenta14adb9ab9c50cbcd95a2d2e3f42c41fecf73fb0 (diff)
downloadtdelibs-706098c452fbe8a0626e46279e9f16b773679af7.tar.gz
tdelibs-706098c452fbe8a0626e46279e9f16b773679af7.zip
Fixed FTBFS caused by libcryptsetup 2.0
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdecore/tdehw/tdestoragedevice.cpp')
-rw-r--r--tdecore/tdehw/tdestoragedevice.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/tdecore/tdehw/tdestoragedevice.cpp b/tdecore/tdehw/tdestoragedevice.cpp
index 58c97e5c6..6c82efb2b 100644
--- a/tdecore/tdehw/tdestoragedevice.cpp
+++ b/tdecore/tdehw/tdestoragedevice.cpp
@@ -75,21 +75,6 @@
TQT_DBusData convertDBUSDataToVariantData(TQT_DBusData);
#endif // defined(WITH_UDISKS) || defined(WITH_UDISKS2)
-#if defined(WITH_CRYPTSETUP)
-int TDEStorageDevice::cryptsetup_password_entry_callback(const char *msg, char *buf, size_t length, void *usrptr) {
- TDEStorageDevice* sdevice = (TDEStorageDevice*)usrptr;
-
- unsigned int passwd_len = sdevice->m_cryptDevicePassword.size();
- if (passwd_len < length) {
- memcpy(buf, sdevice->m_cryptDevicePassword.data(), length);
- return passwd_len;
- }
- else {
- return -1;
- }
-}
-#endif
-
TDEStorageDevice::TDEStorageDevice(TDEGenericDeviceType::TDEGenericDeviceType dt, TQString dn) : TDEGenericDevice(dt, dn), m_mediaInserted(true), m_cryptDevice(NULL) {
m_diskType = TDEDiskDeviceType::Null;
m_diskStatus = TDEDiskDeviceStatus::Null;
@@ -142,7 +127,6 @@ void TDEStorageDevice::internalInitializeLUKSIfNeeded() {
if (node != "") {
ret = crypt_init(&m_cryptDevice, node.ascii());
if (ret == 0) {
- crypt_set_password_callback(m_cryptDevice, TDEStorageDevice::cryptsetup_password_entry_callback, this);
ret = crypt_load(m_cryptDevice, NULL, NULL);
if (ret == 0) {
int keyslot_count;