rename optind to optidx
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15474 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -102,12 +102,12 @@ main(int argc, char **argv)
|
||||
krb5_context context;
|
||||
krb5_error_code ret;
|
||||
krb5_realm realm;
|
||||
int optind = 0;
|
||||
int optidx = 0;
|
||||
char *user;
|
||||
|
||||
setprogname(argv[0]);
|
||||
|
||||
if(getarg(args, sizeof(args) / sizeof(args[0]), argc, argv, &optind))
|
||||
if(getarg(args, sizeof(args) / sizeof(args[0]), argc, argv, &optidx))
|
||||
usage(1);
|
||||
|
||||
if (help_flag)
|
||||
@@ -118,8 +118,8 @@ main(int argc, char **argv)
|
||||
exit(0);
|
||||
}
|
||||
|
||||
argc -= optind;
|
||||
argv += optind;
|
||||
argc -= optidx;
|
||||
argv += optidx;
|
||||
|
||||
if (argc != 1)
|
||||
errx(1, "first argument should be a local user that in root .k5login");
|
||||
|
Reference in New Issue
Block a user