Skip to content

Commit

Permalink
upstream commit
Browse files Browse the repository at this point in the history
Fix text in error message.  Patch from zev at
bewilderbeest.net.

Upstream-ID: deb0486e175e7282f98f9a15035d76c55c84f7f6
  • Loading branch information
daztucker authored and djmdjm committed Dec 16, 2016
1 parent b737e4d commit dcc7d74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dh.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $OpenBSD: dh.c,v 1.61 2016/09/12 01:22:38 deraadt Exp $ */
/* $OpenBSD: dh.c,v 1.62 2016/12/15 21:20:41 dtucker Exp $ */
/*
* Copyright (c) 2000 Niels Provos. All rights reserved.
*
Expand Down Expand Up @@ -152,7 +152,7 @@ choose_dh(int min, int wantbits, int max)
struct dhgroup dhg;

if ((f = fopen(_PATH_DH_MODULI, "r")) == NULL) {
logit("WARNING: could open open %s (%s), using fixed modulus",
logit("WARNING: could not open %s (%s), using fixed modulus",
_PATH_DH_MODULI, strerror(errno));
return (dh_new_group_fallback(max));
}
Expand Down

0 comments on commit dcc7d74

Please sign in to comment.