~ubuntu-branches/ubuntu/vivid/globus-gss-assist/vivid

« back to all changes in this revision

Viewing changes to tokens_f.c

  • Committer: Package Import Robot
  • Author(s): Mattias Ellert
  • Date: 2012-04-29 07:03:12 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20120429070312-vxpkcewt8lat0mwu
Tags: 8.5-1
* Update to Globus Toolkit 5.2.1
* Drop patches globus-gss-assist-doxygen.patch, globus-gss-assist-deps.patch
  and globus-gss-assist-format.patch (fixed upstream)

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 * @author Sam Lang, Sam Meder
21
21
 * 
22
22
 * $RCSfile: tokens_f.c,v $
23
 
 * $Revision: 1.9 $
24
 
 * $Date: 2007/08/09 14:24:23 $
 
23
 * $Revision: 1.9.56.3 $
 
24
 * $Date: 2012/04/02 17:07:11 $
25
25
 */
26
26
#endif
27
27
 
110
110
     */
111
111
         
112
112
    if (((int_buf[0]  >= 20) && (int_buf[0] <= 26) 
113
 
        && (((int_buf[1] == 3 && ((int_buf[2] == 0) || int_buf[2] == 1))
 
113
        && (((int_buf[1] == 3)
114
114
             || (int_buf[1] == 2 && int_buf[2] == 0))))
115
115
        || ((int_buf[0] & 0x80) && int_buf[2] == 1))
116
116
    {
371
371
            ex->flags, size));
372
372
 
373
373
    if (!(size > 5 && header[0] <= 26 && header[0] >= 20
374
 
          && ((header[1] == 3 && (header[2] == 0 || header[2] == 1))
 
374
          && ((header[1] == 3)
375
375
              || (header[1] == 2 && header[2] == 0))))
376
376
    {
377
377