~ubuntu-branches/ubuntu/trusty/gnupg/trusty-updates

« back to all changes in this revision

Viewing changes to mpi/mpi-internal.h

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2013-10-30 15:30:58 UTC
  • mfrom: (1.1.22 sid)
  • Revision ID: package-import@ubuntu.com-20131030153058-rogo06w7yvzn1qqt
Tags: 1.4.15-1.1ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Disable mlock() test since it fails with ulimit 0 (on buildds).
  - Set gpg (or gpg2) and gpgsm to use a passphrase agent by default.
  - Only suggest gnupg-curl and libldap; recommendations are pulled into
    minimal, and we don't need the keyserver utilities in a minimal Ubuntu
    system.
  - Remove the Win32 build.
* Dropped upstreamed patches:
  - debian/patches/CVE-2013-4351.patch
  - debian/patches/CVE-2013-4402.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
    do {                                \
105
105
        mpi_size_t _i;                  \
106
106
        for( _i = 0; _i < (n); _i++ )   \
107
 
            (d)[_i] = (d)[_i];          \
 
107
            (d)[_i] = (s)[_i];          \
108
108
    } while (0)
109
109
 
110
110
#define MPN_COPY_DECR( d, s, n ) \