diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2021-12-01 16:42:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2021-12-01 16:42:14 +0000 |
commit | 0cd7981796aec12e08aebbcfa1f9261d02eead4f (patch) | |
tree | b5413c289367d68918e901d4391584aa25cd9697 /sbin/iked/parse.y | |
parent | 5c5ac9bf6824a286285b5c684059d4c656192580 (diff) |
whitespace cleanup during review read
Diffstat (limited to 'sbin/iked/parse.y')
-rw-r--r-- | sbin/iked/parse.y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/iked/parse.y b/sbin/iked/parse.y index eb99b0a7dd8..881d4aa901c 100644 --- a/sbin/iked/parse.y +++ b/sbin/iked/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.137 2021/11/20 20:44:33 tobhe Exp $ */ +/* $OpenBSD: parse.y,v 1.138 2021/12/01 16:42:13 deraadt Exp $ */ /* * Copyright (c) 2019 Tobias Heider <tobias.heider@stusta.de> @@ -668,7 +668,7 @@ protoval : STRING { } ; -rdomain : /* empty */ { $$ = -1; } +rdomain : /* empty */ { $$ = -1; } | RDOMAIN NUMBER { if ($2 > 255 || $2 < 0) { yyerror("rdomain outside range"); @@ -2495,7 +2495,7 @@ create_ike(char *name, int af, struct ipsec_addr_wrap *ipproto, pol.pol_ipproto[i] = ipp->type; pol.pol_nipproto++; } - + pol.pol_flags = flags; pol.pol_rdomain = rdomain; memcpy(&pol.pol_auth, authtype, sizeof(struct iked_auth)); |