iscontrol: move definition of vflag/iscsidev to iscontrol.c

Mark the declaration extern as these are used elsewhere; this fixes the
build with -fno-common.

MFC after:	3 days
This commit is contained in:
kevans 2020-03-29 02:28:15 +00:00
parent aeb5d15f58
commit 1ed0b3daec
2 changed files with 5 additions and 2 deletions

View File

@ -82,6 +82,9 @@ token_t DigestMethods[] = {
{0, 0}
};
int vflag;
char *iscsidev;
u_char isid[6 + 6];
/*
| Default values

View File

@ -149,8 +149,8 @@ int recvpdu(isess_t *sess, pdu_t *pp);
int lookup(token_t *tbl, char *m);
int vflag;
char *iscsidev;
extern int vflag;
extern char *iscsidev;
void parseArgs(int nargs, char **args, isc_opt_t *op);
void parseConfig(FILE *fd, char *key, isc_opt_t *op);