]> git.sur5r.net Git - openocd/commitdiff
change #include "httpd.h" to <server/httpd.h>
authorZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:15:03 +0000 (04:15 -0800)
committerZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:24:49 +0000 (04:24 -0800)
Changes from the flat namespace to heirarchical one.  Instead of writing:

#include "httpd.h"

the following form should be used.

#include <server/httpd.h>

The exception is from .c files in the same directory.

src/openocd.c

index c06142362055a403b53df9a83aada489932497b1..58ad6178b2ac60927d775016ad1453a90b8ea3e0 100644 (file)
@@ -40,7 +40,7 @@
 
 #include "server.h"
 #include <server/gdb_server.h>
-#include "httpd.h"
+#include <server/httpd.h>
 
 #ifdef HAVE_STRINGS_H
 #include <strings.h>