~ubuntu-branches/ubuntu/trusty/gnupg/trusty-security

« back to all changes in this revision

Viewing changes to include/util.h

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2013-08-02 11:27:51 UTC
  • mfrom: (1.1.20 sid)
  • Revision ID: package-import@ubuntu.com-20130802112751-np45f6mcog4qj3w8
Tags: 1.4.14-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.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
         const char *last;
50
50
         void *aliases;
51
51
         const void *cur_alias;
 
52
         void *iio_list;
52
53
     } internal;            /* DO NOT CHANGE */
53
54
} ARGPARSE_ARGS;
54
55
 
219
220
 
220
221
void init_membuf (membuf_t *mb, int initiallen);
221
222
void put_membuf  (membuf_t *mb, const void *buf, size_t len);
 
223
void put_membuf_str (membuf_t *mb, const char *buf);
222
224
void *get_membuf (membuf_t *mb, size_t *len);
223
225
 
224
226