summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--dh.c4
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9cabcb46d..5d4855d65 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -34,6 +34,9 @@
34 do not use Sx for sections outwith the man page - ingo informs me that 34 do not use Sx for sections outwith the man page - ingo informs me that
35 stuff like html will render with broken links; 35 stuff like html will render with broken links;
36 issue reported by Eric S. Raymond, via djm 36 issue reported by Eric S. Raymond, via djm
37 - markus@cvs.openbsd.org 2013/07/02 12:31:43
38 [dh.c]
39 remove extra whitespace
37 40
3820130702 4120130702
39 - (dtucker) [contrib/cygwin/README contrib/cygwin/ssh-host-config 42 - (dtucker) [contrib/cygwin/README contrib/cygwin/ssh-host-config
diff --git a/dh.c b/dh.c
index a7d0e3ab4..449dd3858 100644
--- a/dh.c
+++ b/dh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: dh.c,v 1.50 2013/06/21 05:42:32 djm Exp $ */ 1/* $OpenBSD: dh.c,v 1.51 2013/07/02 12:31:43 markus Exp $ */
2/* 2/*
3 * Copyright (c) 2000 Niels Provos. All rights reserved. 3 * Copyright (c) 2000 Niels Provos. All rights reserved.
4 * 4 *
@@ -48,7 +48,7 @@ parse_prime(int linenum, char *line, struct dhgroup *dhg)
48 const char *errstr = NULL; 48 const char *errstr = NULL;
49 long long n; 49 long long n;
50 50
51 dhg->p = dhg-> g = NULL; 51 dhg->p = dhg->g = NULL;
52 cp = line; 52 cp = line;
53 if ((arg = strdelim(&cp)) == NULL) 53 if ((arg = strdelim(&cp)) == NULL)
54 return 0; 54 return 0;