Make encfs include paths consistent.

This commit is contained in:
Valient Gough 2015-06-17 22:59:04 -07:00
parent 32fe6e104a
commit 98b2d50b40
26 changed files with 50 additions and 50 deletions

View File

@ -25,10 +25,10 @@
#include <cstring>
#include <memory>
#include "FSConfig.h"
#include "FileIO.h"
#include "FileUtils.h"
#include "MemoryPool.h"
#include "encfs/FSConfig.h"
#include "encfs/FileIO.h"
#include "i18n.h"
template <typename Type>

View File

@ -25,9 +25,9 @@
#include <cstring>
#include "Cipher.h"
#include "CipherKey.h"
#include "NameIO.h"
#include "base64.h"
#include "encfs/CipherKey.h"
#include "encfs/NameIO.h"
#include "intl/gettext.h"
namespace rlog {

View File

@ -25,8 +25,8 @@
#include <memory>
#include "CipherKey.h"
#include "Interface.h"
#include "NameIO.h"
#include "encfs/Interface.h"
#include "shared_ptr.h"
class Cipher;

View File

@ -26,6 +26,7 @@
#include <utility>
#include "Cipher.h"
#include "CipherKey.h"
#include "Interface.h"
// for static build. Need to reference the modules which are registered at
// run-time, to ensure that the linker doesn't optimize them away.
@ -33,7 +34,6 @@
#include "Range.h"
#include "SSL_Cipher.h"
#include "base64.h"
#include "encfs/CipherKey.h"
using namespace std;
using namespace rel;

View File

@ -29,10 +29,10 @@
#include <sys/stat.h>
#include <cerrno>
#include "BlockFileIO.h"
#include "Cipher.h"
#include "encfs/BlockFileIO.h"
#include "encfs/CipherKey.h"
#include "encfs/FileIO.h"
#include "CipherKey.h"
#include "FileIO.h"
/*
- Version 2:0 adds support for a per-file initialization vector with a

View File

@ -28,9 +28,9 @@
#include "BlockFileIO.h"
#include "CipherKey.h"
#include "FSConfig.h"
#include "FileUtils.h"
#include "encfs/FSConfig.h"
#include "encfs/Interface.h"
#include "Interface.h"
class Cipher;
class FileIO;

View File

@ -27,7 +27,7 @@
#include <cstring>
#include <utility>
#include "encfs/ConfigVar.h"
#include "ConfigVar.h"
using namespace std;
using namespace rlog;

View File

@ -27,10 +27,10 @@
#include <cstdio>
#include "DirNode.h"
#include "FSConfig.h"
#include "FileNode.h"
#include "FileUtils.h"
#include "encfs/FSConfig.h"
#include "encfs/FileNode.h"
#include "encfs/NameIO.h"
#include "NameIO.h"
#ifdef linux
#include <sys/fsuid.h>
#endif

View File

@ -30,8 +30,8 @@
#include "CipherKey.h"
#include "FileUtils.h"
#include "FSConfig.h"
#include "encfs.h"
#include "encfs/FSConfig.h"
class Cipher;
class DirNode;

View File

@ -49,18 +49,18 @@
#include "BlockNameIO.h"
#include "Cipher.h"
#include "CipherKey.h"
#include "ConfigReader.h"
#include "ConfigVar.h"
#include "Context.h"
#include "DirNode.h"
#include "FSConfig.h"
#include "FileUtils.h"
#include "Interface.h"
#include "NameIO.h"
#include "Range.h"
#include "autosprintf.h"
#include "config.h"
#include "encfs/CipherKey.h"
#include "encfs/ConfigVar.h"
#include "encfs/Interface.h"
#include "encfs/NameIO.h"
#include "encfs/Range.h"
#include "i18n.h"
#include "intl/gettext.h"
#include "readpassphrase.h"

View File

@ -26,11 +26,11 @@
#include <sys/stat.h>
#include <cstring>
#include "BlockFileIO.h"
#include "Cipher.h"
#include "FileIO.h"
#include "FileUtils.h"
#include "MemoryPool.h"
#include "encfs/BlockFileIO.h"
#include "encfs/Cipher.h"
#include "encfs/FileIO.h"
#include "i18n.h"
namespace rlog {

View File

@ -27,9 +27,9 @@
#include "BlockFileIO.h"
#include "Cipher.h"
#include "encfs/CipherKey.h"
#include "encfs/FSConfig.h"
#include "encfs/Interface.h"
#include "CipherKey.h"
#include "FSConfig.h"
#include "Interface.h"
class Cipher;
class FileIO;

View File

@ -30,10 +30,10 @@
#include <utility>
#include "BlockNameIO.h"
#include "CipherKey.h"
#include "Interface.h"
#include "NullNameIO.h"
#include "StreamNameIO.h"
#include "encfs/CipherKey.h"
#include "encfs/Interface.h"
using namespace std;
using namespace rel;

View File

@ -23,9 +23,9 @@
#include <cstring>
#include <memory>
#include "Cipher.h"
#include "Interface.h"
#include "Range.h"
#include "encfs/Cipher.h"
using namespace std;
using namespace rel;

View File

@ -24,8 +24,8 @@
#include <stdint.h>
#include "Cipher.h"
#include "CipherKey.h"
#include "Interface.h"
#include "encfs/CipherKey.h"
/*
Implements Cipher interface for a pass-through mode. May be useful for

View File

@ -23,8 +23,8 @@
#include <cstring>
#include <memory>
#include "encfs/CipherKey.h"
#include "encfs/NameIO.h"
#include "CipherKey.h"
#include "NameIO.h"
class Cipher;

View File

@ -23,8 +23,8 @@
#include <stdint.h>
#include "Interface.h"
#include "NameIO.h"
#include "encfs/Interface.h"
class NullNameIO : public NameIO {
public:

View File

@ -29,8 +29,8 @@
#include <cerrno>
#include <cstring>
#include "FileIO.h"
#include "RawFileIO.h"
#include "encfs/FileIO.h"
using namespace std;

View File

@ -24,8 +24,8 @@
#include <sys/types.h>
#include <string>
#include "Interface.h"
#include "FileIO.h"
#include "encfs/Interface.h"
class RawFileIO : public FileIO {
public:

View File

@ -32,11 +32,11 @@
#include <cstring>
#include <string>
#include "Cipher.h"
#include "Interface.h"
#include "Mutex.h"
#include "Range.h"
#include "SSL_Cipher.h"
#include "encfs/Cipher.h"
#include "encfs/Interface.h"
#include "intl/gettext.h"
namespace rlog {

View File

@ -25,8 +25,8 @@
#include <memory>
#include "Cipher.h"
#include "CipherKey.h"
#include "Interface.h"
#include "encfs/CipherKey.h"
class SSLKey;
#ifndef EVP_CIPHER

View File

@ -25,9 +25,9 @@
#include <cstring>
#include "Cipher.h"
#include "CipherKey.h"
#include "NameIO.h"
#include "base64.h"
#include "encfs/CipherKey.h"
#include "encfs/NameIO.h"
#include "intl/gettext.h"
using namespace rel;

View File

@ -25,8 +25,8 @@
#include <memory>
#include "CipherKey.h"
#include "Interface.h"
#include "NameIO.h"
#include "encfs/Interface.h"
class Cipher;

View File

@ -49,8 +49,8 @@
#include "Context.h"
#include "DirNode.h"
#include "FileNode.h"
#include "FileUtils.h"
#include "encfs/FileNode.h"
#include "fuse.h"
namespace rel {

View File

@ -36,14 +36,14 @@
#include <openssl/ssl.h>
#include "Cipher.h"
#include "CipherKey.h"
#include "DirNode.h"
#include "FSConfig.h"
#include "FileNode.h"
#include "FileUtils.h"
#include "Interface.h"
#include "autosprintf.h"
#include "config.h"
#include "encfs/CipherKey.h"
#include "encfs/FSConfig.h"
#include "encfs/Interface.h"
#include "i18n.h"
#include "intl/gettext.h"

View File

@ -31,15 +31,15 @@
#include "BlockNameIO.h"
#include "Cipher.h"
#include "CipherKey.h"
#include "DirNode.h"
#include "FSConfig.h"
#include "FileUtils.h"
#include "Interface.h"
#include "MemoryPool.h"
#include "NameIO.h"
#include "Range.h"
#include "StreamNameIO.h"
#include "encfs/CipherKey.h"
#include "encfs/FSConfig.h"
#include "encfs/NameIO.h"
#include "encfs/Range.h"
#define NO_DES
#include <openssl/ssl.h>