diff options
author | Damien Miller <djm@mindrot.org> | 2013-07-18 08:12:06 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2013-07-18 08:12:06 +0200 |
commit | 0d02c3e10e1ed16d6396748375a133d348127a2a (patch) | |
tree | 149b113144a0449b3aa8e8061e74fc4c9d63b7d9 /dh.c | |
parent | - jmc@cvs.openbsd.org 2013/06/27 14:05:37 (diff) | |
download | openssh-0d02c3e10e1ed16d6396748375a133d348127a2a.tar.xz openssh-0d02c3e10e1ed16d6396748375a133d348127a2a.zip |
- markus@cvs.openbsd.org 2013/07/02 12:31:43
[dh.c]
remove extra whitespace
Diffstat (limited to 'dh.c')
-rw-r--r-- | dh.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: dh.c,v 1.50 2013/06/21 05:42:32 djm Exp $ */ +/* $OpenBSD: dh.c,v 1.51 2013/07/02 12:31:43 markus Exp $ */ /* * Copyright (c) 2000 Niels Provos. All rights reserved. * @@ -48,7 +48,7 @@ parse_prime(int linenum, char *line, struct dhgroup *dhg) const char *errstr = NULL; long long n; - dhg->p = dhg-> g = NULL; + dhg->p = dhg->g = NULL; cp = line; if ((arg = strdelim(&cp)) == NULL) return 0; |