~nutznboltz-deactivatedaccount/ubuntu/precise/gnutls26/fix-lp926350

« back to all changes in this revision

Viewing changes to gl/fseeko.c

  • Committer: Package Import Robot
  • Author(s): Andreas Metzler
  • Date: 2011-10-01 15:28:13 UTC
  • mfrom: (12.1.20 sid)
  • Revision ID: package-import@ubuntu.com-20111001152813-yygm1c4cxonfxhzy
Tags: 2.12.11-1
* New upstream version.
  + Allow CA importing of 0 certificates to succeed. Closes: #640639
* Add libp11-kit-dev to libgnutls-dev dependencies. (see #643811)
* [20_guiledocstring.diff] guile: Fix docstring extraction with CPP 4.5+.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* An fseeko() function that, together with fflush(), is POSIX compliant.
2
 
   Copyright (C) 2007-2010 Free Software Foundation, Inc.
 
2
   Copyright (C) 2007-2011 Free Software Foundation, Inc.
3
3
 
4
4
   This program is free software; you can redistribute it and/or modify
5
5
   it under the terms of the GNU General Public License as published by
69
69
      && fp->_rcount == 0
70
70
      && fp->_wcount == 0
71
71
      && fp->_ungetc_count == 0)
72
 
#elif defined _IOERR                /* AIX, HP-UX, IRIX, OSF/1, Solaris, OpenServer, mingw */
 
72
#elif defined _IOERR                /* AIX, HP-UX, IRIX, OSF/1, Solaris, OpenServer, mingw, NonStop Kernel */
73
73
  if (fp_->_ptr == fp_->_base
74
74
      && (fp_->_ptr == NULL || fp_->_cnt == 0))
75
75
#elif defined __UCLIBC__            /* uClibc */
131
131
      fp_->_flags &= ~__SEOF;
132
132
#elif defined __EMX__               /* emx+gcc */
133
133
      fp->_flags &= ~_IOEOF;
134
 
#elif defined _IOERR                /* AIX, HP-UX, IRIX, OSF/1, Solaris, OpenServer, mingw */
 
134
#elif defined _IOERR                /* AIX, HP-UX, IRIX, OSF/1, Solaris, OpenServer, mingw, NonStop Kernel */
135
135
      fp->_flag &= ~_IOEOF;
136
136
#elif defined __MINT__              /* Atari FreeMiNT */
137
137
      fp->__offset = pos;