~ubuntu-branches/debian/sid/varnish/sid

« back to all changes in this revision

Viewing changes to lib/libvarnishapi/vsc.c

  • Committer: Package Import Robot
  • Author(s): Stig Sandbeck Mathisen
  • Date: 2011-10-29 15:23:24 UTC
  • mfrom: (0.1.15)
  • Revision ID: package-import@ubuntu.com-20111029152324-tdtlsurrv22ysknj
Tags: 3.0.2-1
* New upstream release
* Build from upstream tarball instead of git tag
* debian/watch: more specific regular expression

Show diffs side-by-side

added added

removed removed

Lines of Context:
295
295
                sp.class = t;                                           \
296
296
                sp.ident = sha->ident;
297
297
 
298
 
#define VSC_F(nn,tt,ll,ff,dd)                                           \
 
298
#define VSC_F(nn,tt,ll,ff,dd,ee)                                        \
299
299
                sp.name = #nn;                                          \
300
300
                sp.fmt = #tt;                                           \
301
301
                sp.flag = ff;                                           \
330
330
                CHECK_OBJ_NOTNULL(sha, VSM_CHUNK_MAGIC);
331
331
                if (strcmp(sha->class, VSC_CLASS))
332
332
                        continue;
333
 
 
334
 
#define VSC_F(a,b,c,d,e)
 
333
                /*lint -save -e525 -e539 */
 
334
#define VSC_F(n,t,l,f,d,e)
335
335
#define VSC_DONE(a,b,c)
336
336
#define VSC_DO(U,l,t)                                           \
337
337
                if (!strcmp(sha->type, t)) {                    \
343
343
#undef VSC_F
344
344
#undef VSC_DO
345
345
#undef VSC_DONE
 
346
                /*lint -restore */
346
347
                break;
347
348
        }
348
349
        return (i);