~ubuntu-branches/ubuntu/utopic/pcre3/utopic-proposed

« back to all changes in this revision

Viewing changes to pcre_try_flipped.c

  • Committer: Bazaar Package Importer
  • Author(s): Mark Baker
  • Date: 2010-05-07 21:18:05 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20100507211805-hgyyr2003bmbu54m
Tags: 8.02-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
and semantics are as close as possible to those of the Perl 5 language.
7
7
 
8
8
                       Written by Philip Hazel
9
 
           Copyright (c) 1997-2008 University of Cambridge
 
9
           Copyright (c) 1997-2009 University of Cambridge
10
10
 
11
11
-----------------------------------------------------------------------------
12
12
Redistribution and use in source and binary forms, with or without
128
128
  {
129
129
  *internal_study = *study;   /* To copy other fields */
130
130
  internal_study->size = byteflip(study->size, sizeof(study->size));
131
 
  internal_study->options = byteflip(study->options, sizeof(study->options));
 
131
  internal_study->flags = byteflip(study->flags, sizeof(study->flags));
 
132
  internal_study->minlength = byteflip(study->minlength,
 
133
    sizeof(study->minlength));
132
134
  }
133
135
 
134
136
return internal_re;