1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-03-28 22:49:59 +01:00

* argparse.c (optfile_parse): Fix variable typo - 'p2' should be 'p' :)

This commit is contained in:
David Shaw 2002-07-01 21:42:41 +00:00
parent 2b0bb77e6d
commit fe1495e44e
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-07-01 David Shaw <dshaw@jabberwocky.com>
* argparse.c (optfile_parse): Fix variable typo - 'p2' should be
'p' :)
2002-06-29 Werner Koch <wk@gnupg.org>
* argparse.c (optfile_parse): Renamed an auto I to P2 to avoid

View File

@ -337,8 +337,8 @@ optfile_parse( FILE *fp, const char *filename, unsigned *lineno,
break;
if(*p2=='"' && *(p2+1)=='\0') {
p2[strlen(p2)-1] = 0;
p2++;
p[strlen(p)-1] = 0;
p++;
}
}
if( !set_opt_arg(arg, opts[idx].flags, p) )