~ubuntu-branches/debian/sid/isc-dhcp/sid

« back to all changes in this revision

Viewing changes to common/print.c

  • Committer: Package Import Robot
  • Author(s): Andrew Pollock
  • Date: 2012-06-09 14:01:05 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20120609140105-lqcz2t0rsefwzamt
Tags: 4.2.4-1
* New upstream release
* debian/control: reformatted Uploaders so that dch doesn't think I'm making
  NMUs
* debian/rules: do a clean between the LDAP-enabled build and the
  non-LDAP-enabled one, so that no LDAP-related artefacts are accidently
  incorporated into the non-LDAP build
* debian/dhclient-script.*: conditionalise the chown/chmod of the new
  resolv.conf on the existence of the old one (closes: #595400)
* debian/dhclient-script.linux: comply with RFC 3442 and ignore
  the routers option if the rfc3442-classless-static-routes option is present
  (closes: #592735)
* debian/dhclient-script.kfreebsd: fix subnet mask handling (closes: #677985)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
   Turn data structures into printable text. */
4
4
 
5
5
/*
6
 
 * Copyright (c) 2009-2011 by Internet Systems Consortium, Inc. ("ISC")
 
6
 * Copyright (c) 2009-2012 by Internet Systems Consortium, Inc. ("ISC")
7
7
 * Copyright (c) 2004-2007 by Internet Systems Consortium, Inc. ("ISC")
8
8
 * Copyright (c) 1995-2003 by Internet Software Consortium
9
9
 *
479
479
{
480
480
        static char dq_buf [DQLEN + 1];
481
481
        int i;
482
 
        char *s, *last;
 
482
        char *s;
483
483
 
484
484
        s = &dq_buf [0];
485
 
        last = s;
486
485
        
487
486
        i = 0;
488
487