[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] Dont use explicit paths for orconfig.h -- it messes up the ...
- To: or-cvs@freehaven.net
- Subject: [or-cvs] Dont use explicit paths for orconfig.h -- it messes up the ...
- From: nickm@seul.org (Nick Mathewson)
- Date: Tue, 12 Aug 2003 02:45:05 -0400 (EDT)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Tue, 12 Aug 2003 02:45:16 -0400
- Reply-to: or-dev@freehaven.net
- Sender: owner-or-cvs@freehaven.net
Update of /home/or/cvsroot/src/common
In directory moria.mit.edu:/tmp/cvs-serv28306/src/common
Modified Files:
aes.c
Log Message:
Dont use explicit paths for orconfig.h -- it messes up the windows build
Index: aes.c
===================================================================
RCS file: /home/or/cvsroot/src/common/aes.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- aes.c 11 Aug 2003 20:40:20 -0000 1.2
+++ aes.c 12 Aug 2003 06:45:03 -0000 1.3
@@ -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"
/*======================================================================*/