~ubuntu-branches/debian/sid/openchange/sid

« back to all changes in this revision

Viewing changes to libocpf/ocpf.y

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2012-04-12 20:07:57 UTC
  • mfrom: (11 sid)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20120412200757-k933d9trljmxj1l4
Tags: 1:1.0-4
* openchangeserver: Add dependency on openchangeproxy.
* Rebuild against newer version of Samba 4.
* Use dpkg-buildflags.
* Migrate to Git, update Vcs-Git header.
* Switch to debhelper 9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
        char                            *var;
48
48
        struct LongArray_r              MVl;
49
49
        struct StringArray_r            MVszA;
50
 
        struct WStringArray_r           MVszW;
 
50
        struct StringArrayW_r           MVszW;
51
51
        struct BinaryArray_r            MVbin;
52
52
}
53
53
 
287
287
                }
288
288
                | OBRACE mvlong_contents INTEGER EBRACE
289
289
                {
290
 
                        TALLOC_CTX      *mem_ctx;
291
 
 
292
290
                        if (!ctx->lpProp.MVl.cValues) {
293
291
                                ctx->lpProp.MVl.cValues = 0;
294
292
                                ctx->lpProp.MVl.lpl = talloc_array(ctx, uint32_t, 2);
297
295
                                                                     uint32_t,
298
296
                                                                     ctx->lpProp.MVl.cValues + 2);
299
297
                        }
300
 
                        mem_ctx = (TALLOC_CTX *) ctx->lpProp.MVl.lpl;
301
298
                        ctx->lpProp.MVl.lpl[ctx->lpProp.MVl.cValues] = $3;
302
299
                        ctx->lpProp.MVl.cValues += 1;
303
300