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

« back to all changes in this revision

Viewing changes to bin/varnishd/cache_panic.c

  • Committer: Bazaar Package Importer
  • Author(s): Stig Sandbeck Mathisen
  • Date: 2011-03-21 10:16:07 UTC
  • mfrom: (24.1.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20110321101607-528fzl583fqanas5
Tags: 2.1.5-2
ReleaseĀ forĀ unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#include "config.h"
31
31
 
32
32
#include "svnid.h"
33
 
SVNID("$Id: cache_panic.c 4582 2010-02-21 22:00:09Z phk $")
 
33
SVNID("$Id$")
34
34
 
35
35
#include <signal.h>
36
36
#include <stdarg.h>
215
215
        vsb_printf(vsp, "sp = %p {\n", sp);
216
216
        vsb_printf(vsp,
217
217
            "  fd = %d, id = %d, xid = %u,\n", sp->fd, sp->id, sp->xid);
218
 
        vsb_printf(vsp, "  client = %s:%s,\n",
 
218
        vsb_printf(vsp, "  client = %s %s,\n",
219
219
            sp->addr ? sp->addr : "?.?.?.?",
220
220
            sp->port ? sp->port : "?");
221
221
        switch (sp->step) {