Skip to content

Commit baa4c27

Browse files
Fixed issue where adding a new FIDO network would not create the outbound directory. (#1662)
Fixed issue where adding a new FIDO network would not create the outbound directory.
1 parent b417a84 commit baa4c27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/fido/fido_directories.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ FtnDirectories::FtnDirectories(std::filesystem::path bbsdir, const Network& net,
5757
tic_dir_(File::absolute(net_dir_, net_.fido.tic_dir)),
5858
unknown_dir_(File::absolute(net_dir_, net_.fido.unknown_dir)) {
5959
VLOG(1) << "FtnDirectories: receive_dir: " << receive_dir_;
60-
md({inbound_dir_, temp_inbound_dir_, temp_outbound_dir(), netmail_dir_, bad_packets_dir_,
60+
md({inbound_dir_, temp_inbound_dir_, temp_outbound_dir(), outbound_dir_,h netmail_dir_, bad_packets_dir_,
6161
receive_dir_, tic_dir_, unknown_dir_});
6262
}
6363

@@ -75,4 +75,4 @@ std::filesystem::path FtnDirectories::receive_dir() const { return receive_dir_;
7575
std::filesystem::path FtnDirectories::tic_dir() const { return tic_dir_; }
7676
std::filesystem::path FtnDirectories::unknown_dir() const { return unknown_dir_; }
7777

78-
}
78+
}

0 commit comments

Comments
 (0)