~ubuntu-branches/ubuntu/maverick/krb5/maverick

« back to all changes in this revision

Viewing changes to src/lib/krb4/kparse.c

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hartman, Russ Allbery, Sam Hartman
  • Date: 2008-08-21 10:41:41 UTC
  • mfrom: (11.1.15 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080821104141-a0f9c4o4cpo8xd0o
Tags: 1.6.dfsg.4~beta1-4
[ Russ Allbery ]
* Translation updates:
  - Swedish, thanks Martin Bagge.  (Closes: #487669, #491774)
  - Italian, thanks Luca Monducci.  (Closes: #493962)

[ Sam Hartman ]
* Translation Updates:
    - Dutch, Thanks Vincent Zweije, Closes: #495733

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
#include <ctype.h>
39
39
#include <kparse.h>
40
40
#include <string.h>
41
 
#include "krb5/autoconf.h"
 
41
#include "autoconf.h"
42
42
#ifdef HAVE_STDLIB_H
43
43
#include <stdlib.h>
44
44
#endif
563
563
{
564
564
    char *q;
565
565
    for (q=start; *q; q++)
566
 
        if (isupper((int) *q))
567
 
            *q=tolower((int) *q);
 
566
        if (isupper((unsigned char) *q))
 
567
            *q=tolower((unsigned char) *q);
568
568
    return(start);
569
569
}
570
570