summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2021-04-01 16:50:23 +0000
committerderaadt <deraadt@openbsd.org>2021-04-01 16:50:23 +0000
commit81e11a4dc85362f9fcc660d0ee49155800131a8e (patch)
tree0e3866879d17ae12703e46c758eedefade2b0901
parentSort usage: rR -> Rr (diff)
downloadwireguard-openbsd-81e11a4dc85362f9fcc660d0ee49155800131a8e.tar.xz
wireguard-openbsd-81e11a4dc85362f9fcc660d0ee49155800131a8e.zip
spelling
-rw-r--r--usr.sbin/rpki-client/repo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpki-client/repo.c b/usr.sbin/rpki-client/repo.c
index 6c9c717e202..7d3eba44898 100644
--- a/usr.sbin/rpki-client/repo.c
+++ b/usr.sbin/rpki-client/repo.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: repo.c,v 1.1 2021/04/01 16:04:48 claudio Exp $ */
+/* $OpenBSD: repo.c,v 1.2 2021/04/01 16:50:23 deraadt Exp $ */
/*
* Copyright (c) 2021 Claudio Jeker <claudio@openbsd.org>
* Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -171,7 +171,7 @@ filepath_dir_exists(struct filepath_tree *tree, char *path)
needle.file = path;
res = RB_NFIND(filepath_tree, tree, &needle);
while (res != NULL && strstr(res->file, path) == res->file) {
- /* make sure that filepath acctually is in that path */
+ /* make sure that filepath actually is in that path */
if (res->file[strlen(path)] == '/')
return 1;
res = RB_NEXT(filepath_tree, tree, res);