diff options
author | 2017-01-23 03:31:33 +0000 | |
---|---|---|
committer | 2017-01-23 03:31:33 +0000 | |
commit | b0446f6b0a40068f39440fbaf2a624626ac87d0c (patch) | |
tree | 75f2f99e4cc99a1ce46c2c35dd9d5eeee5b7b127 | |
parent | whitespace (diff) | |
download | wireguard-openbsd-b0446f6b0a40068f39440fbaf2a624626ac87d0c.tar.xz wireguard-openbsd-b0446f6b0a40068f39440fbaf2a624626ac87d0c.zip |
whitespace
-rw-r--r-- | usr.sbin/acme-client/parse.y | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/acme-client/parse.y b/usr.sbin/acme-client/parse.y index 11cf5aca8aa..0f43129ef04 100644 --- a/usr.sbin/acme-client/parse.y +++ b/usr.sbin/acme-client/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.14 2017/01/21 13:16:40 benno Exp $ */ +/* $OpenBSD: parse.y,v 1.15 2017/01/23 03:31:33 deraadt Exp $ */ /* * Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv> @@ -287,7 +287,7 @@ domainoptsl : ALTERNATIVE NAMES '{' altname_l '}' if (s[0] != '/') { free(s); yyerror("not an absolute path"); - YYERROR; + YYERROR; } if ((conf_new_keyfile(conf, s)) == NULL) { free(s); @@ -334,7 +334,7 @@ domainoptsl : ALTERNATIVE NAMES '{' altname_l '}' } if ((s = strdup($3)) == NULL) err(EXIT_FAILURE, "strdup"); - if (authority_find(conf, s) == NULL) { + if (authority_find(conf, s) == NULL) { yyerror("use: unknown authority"); YYERROR; } |