~ubuntu-branches/ubuntu/jaunty/heimdal/jaunty

« back to all changes in this revision

Viewing changes to lib/hx509/softp11.c

  • Committer: Bazaar Package Importer
  • Author(s): Nick Ellery
  • Date: 2008-11-17 22:25:58 UTC
  • mfrom: (1.1.5 upstream) (2.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20081117222558-jd1aj1jth6ycdb0x
Tags: 1.2.dfsg.1-2.1ubuntu1
* Merge from debian unstable, remaining changes (LP: #299345):
  - Change libdb4.2-dev to libdb4.6-dev in build-deps
  - Add netbase to heimdal-kdc depends.
  - Set CPPFLAGS=-DLDAP_DEPRECATED to fix build with OpenLDAP 2.4 on
    64-bit architectures.
* Remove dependency on update-inetd to heimdal-servers and heimdal-kdc,
  as packages should rely on the inet-superserver to provide the
  update-inetd command.
* Drop the addition of -1 to the version of comerr-dev in build depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
{
128
128
    int len;
129
129
    va_list ap;
 
130
    va_start(ap, fmt);
130
131
    len = vsnprintf(str, size, fmt, ap);
131
132
    va_end(ap);
132
133
    if (len < 0 || len > size)
704
705
        st_logf("line: %s\n", buf);
705
706
 
706
707
        p = buf;
707
 
        while (isspace(*p))
 
708
        while (isspace((unsigned char)*p))
708
709
            p++;
709
710
        if (*p == '#')
710
711
            continue;
711
 
        while (isspace(*p))
 
712
        while (isspace((unsigned char)*p))
712
713
            p++;
713
714
 
714
715
        s = NULL;