~ubuntu-branches/debian/squeeze/ntp/squeeze-201010051545

« back to all changes in this revision

Viewing changes to m4/hs_ulong_const.m4

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2009-01-05 21:10:03 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090105211003-mh6zc3um4k1uhsj7
Tags: 1:4.2.4p4+dfsg-8
It did not properly check the return value of EVP_VerifyFinal
which results in an malformed DSA signature being treated as
a good signature rather than as an error.  (CVE-2009-0021)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AC_DEFUN([hs_ULONG_CONST],
 
2
[ AH_TEMPLATE(ULONG_CONST, [How do we create unsigned long constants?])
 
3
AC_EGREP_CPP(Circus,
 
4
 [#define ACAT(a,b)a ## b
 
5
ACAT(Cir,cus)
 
6
], AC_DEFINE([ULONG_CONST(a)], [a ## UL]),
 
7
    AC_EGREP_CPP(Reiser,
 
8
[#define RCAT(a,b)a/**/b
 
9
RCAT(Rei,ser)
 
10
], AC_DEFINE([ULONG_CONST(a)], [a/**/L]),
 
11
    AC_MSG_ERROR([How do we create an unsigned long constant?])))])