OBS User unknown 2009-02-12 23:55:54 +00:00 committed by Git OBS Bridge
parent f1d0461b67
commit 6dc0ab9079
3 changed files with 21 additions and 1 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Jan 30 14:17:01 CET 2009 - mls@suse.de
- fix DSA_verify return code test [bnc#465270]
-------------------------------------------------------------------
Thu Jan 22 02:48:00 CET 2009 - crrodriguez@suse.de

11
openslp.fixdsareturn.diff Normal file
View File

@ -0,0 +1,11 @@
--- ./common/slp_crypto.c.orig 2002-03-19 23:52:15.000000000 +0000
+++ ./common/slp_crypto.c 2009-01-30 13:15:06.000000000 +0000
@@ -179,5 +179,5 @@ int SLPCryptoDSAVerify(SLPCryptoDSAKey*
digestlen,
(unsigned char*)signature, /* broken DSA_verify() declaration */
signaturelen,
- key);
-}
\ No newline at end of file
+ key) > 0 ? 1 : 0;
+}

View File

@ -21,7 +21,7 @@ Name: openslp
BuildRequires: bison flex openssl-devel
Summary: An OpenSLP Implementation of Service Location Protocol V2
Version: 1.2.0
Release: 171
Release: 173
License: BSD 3-Clause; GPL v2 or later
Group: System/Daemons
Url: http://www.openslp.org/
@ -53,6 +53,7 @@ Patch12: openslp.emptyanswer.diff
Patch13: openslp.doubleequal.diff
Patch14: openslp.dereg.diff
Patch15: openslp.fixaddrcheck.diff
Patch16: openslp.fixdsareturn.diff
%description
Service Location Protocol is an IETF standards track protocol that
@ -154,6 +155,7 @@ Authors:
%patch13
%patch14
%patch15
%patch16
%build
autoreconf -fiv
@ -267,6 +269,8 @@ rm -rf $RPM_BUILD_ROOT
%_libdir/libslp.so
%changelog
* Fri Jan 30 2009 mls@suse.de
- fix DSA_verify return code test [bnc#465270]
* Thu Jan 22 2009 crrodriguez@suse.de
- remove static libraries and "la" files
* Wed Jan 07 2009 olh@suse.de