diff options
author | Moritz Jodeit <moritz@cvs.openbsd.org> | 2007-04-02 08:08:33 +0000 |
---|---|---|
committer | Moritz Jodeit <moritz@cvs.openbsd.org> | 2007-04-02 08:08:33 +0000 |
commit | 77860deedff5f444e1233bf93fa9bb347729e437 (patch) | |
tree | 9abc9d64f887830a2e0def4a789f71e14e55e484 /sbin/isakmpd | |
parent | 1df025fc6b3d269fad5c5f838ecd9a101e37f080 (diff) |
Don't let -r fall through to the next case block,
if INSECURE_RAND is defined.
ok hshoexer@
Diffstat (limited to 'sbin/isakmpd')
-rw-r--r-- | sbin/isakmpd/isakmpd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/isakmpd/isakmpd.c b/sbin/isakmpd/isakmpd.c index f82d38c5e1b..c9edeb6851f 100644 --- a/sbin/isakmpd/isakmpd.c +++ b/sbin/isakmpd/isakmpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isakmpd.c,v 1.95 2006/09/01 00:24:06 mpf Exp $ */ +/* $OpenBSD: isakmpd.c,v 1.96 2007/04/02 08:08:32 moritz Exp $ */ /* $EOM: isakmpd.c,v 1.54 2000/10/05 09:28:22 niklas Exp $ */ /* @@ -207,8 +207,8 @@ parse_args(int argc, char *argv[]) regrand = 1; #else usage(); - break; #endif + break; case 'R': report_file = optarg; break; |