summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-10-11 18:34:42 +0100
committerCarl Hetherington <cth@carlh.net>2013-10-11 18:34:42 +0100
commit8d36c37204ab13d7921500b8fe8151f81e4ee008 (patch)
tree94f18743b3495f05e680cd1457d23794498c4112 /src/lib
parentae9ae4e996dd211b1731fb9e9dd51a6c7c7ebda9 (diff)
Typos in previous.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/util.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc
index badbda4ab..42aaf9815 100644
--- a/src/lib/util.cc
+++ b/src/lib/util.cc
@@ -836,8 +836,8 @@ make_signer ()
list<boost::filesystem::path>::const_iterator i = files.begin();
while (i != files.end()) {
boost::filesystem::path p (sd);
- sd /= *i;
- if (!boost::filesystem::exists (sd)) {
+ p /= *i;
+ if (!boost::filesystem::exists (p)) {
boost::filesystem::remove_all (sd);
libdcp::make_signer_chain (sd, openssl_path ());
break;