~ubuntu-branches/ubuntu/maverick/gnutls26/maverick-updates

« back to all changes in this revision

Viewing changes to src/certtool-gaa.c

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2009-04-14 14:23:19 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090414142319-ok7xejzbqkofno1q
Tags: 2.6.5-1
* Sync sections in debian/control with override file. libgnutls26-dbg is
  section debug, guile-gnutls is section lisp.
* New upstream version. (Needed for Libtasn1-3 2.0)
* New patch 15_tasn1inpc.diff. Make sure libtasn1 is listed in Libs.private.
* Standards-Version: 3.8.1, no changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
493
493
    return tmp;
494
494
}
495
495
 
496
 
static char gaa_getchar(char *arg)
497
 
{
498
 
    if(strlen(arg) != 1)
499
 
    {
500
 
        printf("Option %s: '%s' isn't an character\n", gaa_current_option, arg);
501
 
        GAAERROR(-1);
502
 
    }
503
 
    return arg[0];
504
 
}
505
496
 
506
497
static char* gaa_getstr(char *arg)
507
498
{
508
499
    return arg;
509
500
}
510
 
static float gaa_getfloat(char *arg)
511
 
{
512
 
    float tmp;
513
 
    char a;
514
 
    if(sscanf(arg, "%f%c", &tmp, &a) < 1)
515
 
    {
516
 
        printf("Option %s: '%s' isn't a float number\n", gaa_current_option, arg);
517
 
        GAAERROR(-1);
518
 
    }
519
 
    return tmp;
520
 
}
 
501
 
521
502
/* option structures */
522
503
 
523
504
struct GAAOPTION_debug 
1298
1279
 
1299
1280
        len++;
1300
1281
        a = fgetc( file);
1301
 
        if(a==EOF) return 0; //a = ' ';
 
1282
        if(a==EOF) return 0; /* a = ' '; */
1302
1283
    }
1303
1284
 
1304
1285
    len += 1;