diff options
Diffstat (limited to 'dh.c')
-rw-r--r-- | dh.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,7 +23,7 @@ | |||
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "includes.h" | 25 | #include "includes.h" |
26 | RCSID("$OpenBSD: dh.c,v 1.21 2002/03/06 00:23:27 markus Exp $"); | 26 | RCSID("$OpenBSD: dh.c,v 1.22 2002/06/27 08:49:44 markus Exp $"); |
27 | 27 | ||
28 | #include "xmalloc.h" | 28 | #include "xmalloc.h" |
29 | 29 | ||
@@ -50,7 +50,7 @@ parse_prime(int linenum, char *line, struct dhgroup *dhg) | |||
50 | /* Ignore leading whitespace */ | 50 | /* Ignore leading whitespace */ |
51 | if (*arg == '\0') | 51 | if (*arg == '\0') |
52 | arg = strdelim(&cp); | 52 | arg = strdelim(&cp); |
53 | if (!*arg || *arg == '#') | 53 | if (!arg || !*arg || *arg == '#') |
54 | return 0; | 54 | return 0; |
55 | 55 | ||
56 | /* time */ | 56 | /* time */ |