summaryrefslogtreecommitdiff
path: root/security/pinentry/files/patch-qt::pinentrycontroller.cpp
diff options
context:
space:
mode:
authorMichael Nottebrock <lofi@FreeBSD.org>2004-05-03 19:22:04 +0000
committerMichael Nottebrock <lofi@FreeBSD.org>2004-05-03 19:22:04 +0000
commitd0085641e382dc28e12bf47b48348a9d36c73c24 (patch)
tree8aee121423f8b9740f7a14d2e5fb16a893f8a566 /security/pinentry/files/patch-qt::pinentrycontroller.cpp
parent- upgrade to to 1.14.1; (diff)
Update the Aegypten ports to versions compatible with libgcrypt 1.2.0
Notes
Notes: svn path=/head/; revision=108303
Diffstat (limited to 'security/pinentry/files/patch-qt::pinentrycontroller.cpp')
-rw-r--r--security/pinentry/files/patch-qt::pinentrycontroller.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/security/pinentry/files/patch-qt::pinentrycontroller.cpp b/security/pinentry/files/patch-qt::pinentrycontroller.cpp
deleted file mode 100644
index 361749040e70..000000000000
--- a/security/pinentry/files/patch-qt::pinentrycontroller.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
---- qt/pinentrycontroller.cpp.orig Thu Feb 13 00:20:44 2003
-+++ qt/pinentrycontroller.cpp Thu Feb 13 00:21:32 2003
-@@ -256,9 +256,8 @@
- connect( _pinentry, SIGNAL( rejected() ),
- this, SLOT( slotRejected() ) );
- bool ret = _pinentry->exec();
-- FILE* fp = assuan_get_data_fp( _ctx );
- if( ret ) {
-- fputs( static_cast<const char*>(_pinentry->text().utf8()), fp );
-+ assuan_send_data ( _ctx, static_cast<const void*>(_pinentry->text().utf8()), _pinentry->text().utf8().length() );
- return 0;
- } else {
- assuan_set_error( _ctx, ASSUAN_Canceled, "Dialog cancelled by user" );