diff options
author | Nick Mathewson <nickm@torproject.org> | 2003-08-12 06:45:03 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2003-08-12 06:45:03 +0000 |
commit | 5c4255595d571dd688d666fe86a34c8f418ef1d3 (patch) | |
tree | 9942ec554f7004c91ca06a3193f990ba1c7ea8e2 /src | |
parent | c82e13f1f53b2646fd66d2af2732083efb671cf3 (diff) | |
download | tor-5c4255595d571dd688d666fe86a34c8f418ef1d3.tar tor-5c4255595d571dd688d666fe86a34c8f418ef1d3.tar.gz |
Dont use explicit paths for orconfig.h -- it messes up the windows build
svn:r386
Diffstat (limited to 'src')
-rw-r--r-- | src/common/aes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/aes.c b/src/common/aes.c index aa834fdb1..037d7b306 100644 --- a/src/common/aes.c +++ b/src/common/aes.c @@ -10,8 +10,8 @@ #include <assert.h> #include <stdlib.h> #include <string.h> -#include "../../orconfig.h" -#include "./aes.h" +#include "orconfig.h" +#include "aes.h" #include "util.h" /*======================================================================*/ |