diff options
author | 2013-07-02 12:31:43 +0000 | |
---|---|---|
committer | 2013-07-02 12:31:43 +0000 | |
commit | 5422484b14b5dca23e834f8ad0f0dfc537380efb (patch) | |
tree | dea3e9d719936ab3d6018d01a959d6cb8a2fcb0e | |
parent | document variable name change in java.port.mk (diff) | |
download | wireguard-openbsd-5422484b14b5dca23e834f8ad0f0dfc537380efb.tar.xz wireguard-openbsd-5422484b14b5dca23e834f8ad0f0dfc537380efb.zip |
remove extra whitespace
-rw-r--r-- | usr.bin/ssh/dh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/dh.c b/usr.bin/ssh/dh.c index 741be2fe910..e94572de1c6 100644 --- a/usr.bin/ssh/dh.c +++ b/usr.bin/ssh/dh.c @@ -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. * @@ -45,7 +45,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; |