freebsd-ports/mail/cone/files/patch-cone_cursesmessage.C
Guido Falsi 8df20cbbba - Update to 0.92 [1]
- Fix build without SSLv3 [2]

Thanks ro brnrd for providing an updated patch.

PR:		202677 [1], 203697 [2]
Submitted by:	yamagi at yamagi.org [1]
Submitted by:	cpbsdmail at gmail.com [2]
MFH:		2015Q4
2015-10-28 15:45:45 +00:00

15 lines
540 B
C

--- cone/cursesmessage.C.orig 2014-01-06 19:51:56 UTC
+++ cone/cursesmessage.C
@@ -3761,10 +3761,10 @@ bool CursesMessage::decrypt(std::string
gi.passphrase_fd=passphrase_fd.c_str();
}
- gi.input_func= &tempSaveText.input_func;
+ gi.input_func= &CursesMessage::DecryptSaveText::input_func;
gi.input_func_arg= &tempSaveText;
- gi.output_func= &tempSaveText.output_func;
+ gi.output_func= &CursesMessage::DecryptSaveText::output_func;
gi.output_func_arg= &tempSaveText;
gi.errhandler_func= &tempSaveText.err_func;