~ubuntu-branches/ubuntu/hardy/gnupg2/hardy

« back to all changes in this revision

Viewing changes to intl/printf.c

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia, Michael Bienia, Kees Cook
  • Date: 2006-12-07 00:28:23 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20061207002823-0i7ittrpmsm1nv0i
Tags: 2.0.1-0ubuntu1
[ Michael Bienia ]
* New upstream version.
* Remaining changes:
  - Remove libpcsclite-dev, libopensc2-dev build dependencies (they are in
    universe).
* g10/encr-data.c: remotely controllable function pointer (CVE-2006-6235)
* debian/control: add libcurl3-gnutls-dev to build-depends 
  (Closes Ubuntu: #62864)

[ Kees Cook ]
* debian/rules: include doc/ files as done with gnupg

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Formatted output to strings, using POSIX/XSI format strings with positions.
2
 
   Copyright (C) 2003 Free Software Foundation, Inc.
 
2
   Copyright (C) 2003, 2006 Free Software Foundation, Inc.
3
3
   Written by Bruno Haible <bruno@clisp.org>, 2003.
4
4
 
5
5
   This program is free software; you can redistribute it and/or modify it
14
14
 
15
15
   You should have received a copy of the GNU Library General Public
16
16
   License along with this program; if not, write to the Free Software
17
 
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
 
17
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
18
18
   USA.  */
19
19
 
20
20
#ifdef HAVE_CONFIG_H
61
61
 
62
62
#define STATIC static
63
63
 
 
64
/* This needs to be consistent with libgnuintl.h.in.  */
 
65
#if defined __NetBSD__ || defined __CYGWIN__ || defined __MINGW32__
 
66
/* Don't break __attribute__((format(printf,M,N))).
 
67
   This redefinition is only possible because the libc in NetBSD, Cygwin,
 
68
   mingw does not have a function __printf__.  */
 
69
# define libintl_printf __printf__
 
70
#endif
 
71
 
64
72
/* Define auxiliary functions declared in "printf-args.h".  */
65
73
#include "printf-args.c"
66
74