mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
* argparse.c (optfile_parse): Renamed an auto I to P2 to avoid
shadowing warning.
This commit is contained in:
parent
0ed6228293
commit
bc46bac1ad
@ -1,3 +1,8 @@
|
||||
2002-06-29 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* argparse.c (optfile_parse): Renamed an auto I to P2 to avoid
|
||||
shadowing warning.
|
||||
|
||||
2002-06-21 Stefan Bellon <sbellon@sbellon.de>
|
||||
|
||||
* riscos.c (riscos_global_defaults): New.
|
||||
|
@ -330,15 +330,15 @@ optfile_parse( FILE *fp, const char *filename, unsigned *lineno,
|
||||
/* remove quotes if they totally enclose the
|
||||
string, and do not occur within the string */
|
||||
if( *p == '"' && p[strlen(p)-1]=='"') {
|
||||
char *i=p;
|
||||
char *p2=p;
|
||||
|
||||
while(*(++i))
|
||||
if(*i=='"')
|
||||
while(*(++p2))
|
||||
if(*p2=='"')
|
||||
break;
|
||||
|
||||
if(*i=='"' && *(i+1)=='\0') {
|
||||
p[strlen(p)-1] = 0;
|
||||
p++;
|
||||
if(*p2=='"' && *(p2+1)=='\0') {
|
||||
p2[strlen(p2)-1] = 0;
|
||||
p2++;
|
||||
}
|
||||
}
|
||||
if( !set_opt_arg(arg, opts[idx].flags, p) )
|
||||
|
Loading…
x
Reference in New Issue
Block a user