aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-03-03 15:53:22 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-03-03 15:53:22 +0300
commit646767a35fb2b9b0e3f992a3092c761ea6e5e362 (patch)
tree4fd41691c213c1f626b6319da2ffee9c8a2bae36
parent706a0a18bd2f259be6d61cf83a0ba3c3f9674c5c (diff)
Fix certificates and repositories directory names in comments
-rw-r--r--bpkg/manifest-utility.hxx2
-rw-r--r--bpkg/package.hxx4
-rw-r--r--bpkg/utility.hxx4
3 files changed, 5 insertions, 5 deletions
diff --git a/bpkg/manifest-utility.hxx b/bpkg/manifest-utility.hxx
index 5cc1c24..0f820ec 100644
--- a/bpkg/manifest-utility.hxx
+++ b/bpkg/manifest-utility.hxx
@@ -54,7 +54,7 @@ namespace bpkg
parse_location (const string&, optional<repository_type>);
// Return the repository state subdirectory for the specified location as it
- // appears under .bpkg/repositories/ in the bpkg configuration. Return empty
+ // appears under .bpkg/repos/ in the bpkg configuration. Return empty
// directory if the repository type doesn't have any state.
//
// Note that the semantics used to produce this name is repository type-
diff --git a/bpkg/package.hxx b/bpkg/package.hxx
index 35b9332..68c2cd8 100644
--- a/bpkg/package.hxx
+++ b/bpkg/package.hxx
@@ -645,8 +645,8 @@ namespace bpkg
// certificate
//
// Information extracted from a repository X.509 certificate. The actual
- // certificate is stored on disk as .bpkg/certificates/<id>.pem (we have to
- // store it as a file because that's the only way to pass it to openssl).
+ // certificate is stored on disk as .bpkg/certs/<id>.pem (we have to store
+ // it as a file because that's the only way to pass it to openssl).
//
// If a repository is not authenticated (has no certificate/signature,
// called unauth from now on), then we ask for the user's confirmation and
diff --git a/bpkg/utility.hxx b/bpkg/utility.hxx
index b5e05d5..5c370ef 100644
--- a/bpkg/utility.hxx
+++ b/bpkg/utility.hxx
@@ -53,8 +53,8 @@ namespace bpkg
// Widely-used paths.
//
extern const dir_path bpkg_dir; // .bpkg/
- extern const dir_path certs_dir; // .bpkg/certificates/
- extern const dir_path repos_dir; // .bpkg/repositories/
+ extern const dir_path certs_dir; // .bpkg/certs/
+ extern const dir_path repos_dir; // .bpkg/repos/
extern const dir_path current_dir; // ./
// Temporary directory facility.