Your message dated Sat, 18 Apr 2015 15:50:12 +0200
with message-id <[email protected]>
and subject line Re: Bug#624040: pacemaker: Uses deprecated _set_priority
GnuTLS functions
has caused the Debian Bug report #624040,
regarding pacemaker: Uses deprecated _set_priority GnuTLS functions
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
624040: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=624040
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: pacemaker
Version: 1.0.10-6
Severity: normal
User: [email protected]
Usertags: deprecated-gnutls-2.12
This package is using some functions which are marked deprecated in
newer versions of GnuTLS (>=2.12.x). (They are not yet removed, though.)
These functions will be removed in future releases. GnuTLS 2.12.x is
already available in experimental.
Excerpt from buildlog:
====================================================
remote.c:72:3: warning: 'gnutls_kx_set_priority' is deprecated (declared at
/usr/include/gnutls/compat.h:342)
====================================================
The gnutls_*_set_priority family of functions has been marked deprecated
in 2.12.x. These functions have been superceded by
gnutls_priority_set_direct(). The replacement function was added in gnutls
stable release 2.2.0 (released 2007-12-14).
cu Andreas
--- End Message ---
--- Begin Message ---
Version: 1.1.10+git20130802-4
On 2011-04-25 Andreas Metzler <[email protected]> wrote:
[...]
> Excerpt from buildlog:
> ====================================================
> remote.c:72:3: warning: 'gnutls_kx_set_priority' is deprecated (declared at
> /usr/include/gnutls/compat.h:342)
> ====================================================
This is fixed in sid:
lib/common/remote.c
# ifdef HAVE_GNUTLS_PRIORITY_SET_DIRECT
/*
http://www.manpagez.com/info/gnutls/gnutls-2.10.4/gnutls_81.php#Echo-Server-with-anonymous-authentication
*/
gnutls_priority_set_direct(*session, "NORMAL:+ANON-DH", NULL);
/* gnutls_priority_set_direct (*session,
"NONE:+VERS-TLS-ALL:+CIPHER-ALL:+MAC-ALL:+SIGN-ALL:+COMP-ALL:+ANON-DH", NULL);
*/
# else
gnutls_set_default_priority(*session);
gnutls_kx_set_priority(*session, anon_tls_kx_order);
# endif
cu Andreas
--
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'
--- End Message ---