Fix uninitialized "force" variable.

PR:		23203
Submitted by:	fenner
Approved by:	markm
This commit is contained in:
Andrey A. Chernov 2001-08-13 19:43:14 +00:00
parent f949006c58
commit c6fa3dde62
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=81596

View File

@ -35,6 +35,9 @@ License Agreement applies to this software.
Modified at NRL for OPIE 2.0.
Written at Bellcore for the S/Key Version 1 software distribution
(skey.c).
$FreeBSD$
*/
#include "opie_cfg.h"
@ -138,7 +141,7 @@ int main FUNCTION((argc, argv), int argc AND char *argv[])
char *slash;
int hex = 0;
int type = RESPONSE_STANDARD;
int force;
int force = 0;
if (slash = strchr(argv[0], '/'))
slash++;