mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
See ChangeLog: Sat Dec 12 18:40:32 CET 1998 Werner Koch
This commit is contained in:
parent
af6e96e4f9
commit
e5666c8fef
13 changed files with 373 additions and 258 deletions
|
@ -1,3 +1,7 @@
|
|||
Sat Dec 12 18:40:32 CET 1998 Werner Koch <wk@isil.d.shuttle.de>
|
||||
|
||||
* argparse.c (arg_pars): fixed opts[i] with negative index.
|
||||
|
||||
Fri Nov 27 21:37:41 CET 1998 Werner Koch <wk@isil.d.shuttle.de>
|
||||
|
||||
* dotlock.c: Implemented
|
||||
|
|
|
@ -516,9 +516,9 @@ arg_parse( ARGPARSE_ARGS *arg, ARGPARSE_OPTS *opts)
|
|||
}
|
||||
|
||||
if( i == -2 ) /* ambiguous option */
|
||||
arg->r_opt = (opts[i].flags & 256)? -9:-8;
|
||||
arg->r_opt = -8;
|
||||
else if( i == -1 ) {
|
||||
arg->r_opt = (opts[i].flags & 256)? -7:-2;
|
||||
arg->r_opt = -2;
|
||||
arg->r.ret_str = s+2;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue