]> git.proxmox.com Git - mirror_lxc.git/commitdiff
Change header inclusion path
authordlezcano <dlezcano>
Thu, 4 Sep 2008 10:09:53 +0000 (10:09 +0000)
committerdlezcano <dlezcano>
Thu, 4 Sep 2008 10:09:53 +0000 (10:09 +0000)
25 files changed:
src/lxc/create.c
src/lxc/destroy.c
src/lxc/execute.c
src/lxc/freezer.c
src/lxc/kill.c
src/lxc/lxc_cgroup.c
src/lxc/lxc_conf.c
src/lxc/lxc_config.c
src/lxc/lxc_console.c
src/lxc/lxc_create.c
src/lxc/lxc_destroy.c
src/lxc/lxc_execute.c
src/lxc/lxc_freeze.c
src/lxc/lxc_info.c
src/lxc/lxc_kill.c
src/lxc/lxc_lock.c
src/lxc/lxc_monitor.c
src/lxc/lxc_priority.c
src/lxc/lxc_start.c
src/lxc/lxc_state.c
src/lxc/lxc_stop.c
src/lxc/lxc_unfreeze.c
src/lxc/monitor.c
src/lxc/start.c
src/lxc/stop.c

index 9beb29423f9aa17ce739cf5409b9340c30cd2ce9..bcf661ff669b8d23e9a7b4835387180f247c6ef4 100644 (file)
@@ -30,7 +30,7 @@
 #include <sys/stat.h>
 #include <sys/types.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 static int dir_filter(const struct dirent *dirent)
 {
index 601fef4956c2620eb44b9acbfcff01af4a9c67d3..4823c06eb54fa65e3de7a9aebfedeb127a400b68 100644 (file)
@@ -29,7 +29,7 @@
 #include <errno.h>
 #include <sys/param.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 #include "monitor.h"
 
 static int dir_filter(const struct dirent *dirent)
index 83d39ab95da745398c918136e086b2f3d0cae615..023ae2320537d5b6195e8256d3dcaa7351844d0f 100644 (file)
@@ -36,7 +36,7 @@
 #include <sys/file.h>
 #include <sys/mount.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 LXC_TTY_HANDLER(SIGINT);
 LXC_TTY_HANDLER(SIGQUIT);
index 4f2dc4cd992ba0ebc9d6aa1bdd7fb70c9d1de90b..e495f5cc86fd558c64d35c3207e3922939f59f1c 100644 (file)
@@ -31,7 +31,7 @@
 #include <sys/types.h>
 #include <sys/param.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 static int freeze_unfreeze(const char *name, int freeze)
 {
index 2fef19ea957b1001dfce38025fa186f0bf774214..f071dfb17c32b6322dd46785a0a78feafb415a69 100644 (file)
@@ -31,7 +31,7 @@
 #include <fcntl.h>
 #include <sys/param.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 int lxc_kill(const char *name, int signum)
 {
index f436d664418786602d78c5ede9469ae8f55f4a13..9dfd34c50d2e7152e1315e8be336cd1e1eea9995 100644 (file)
@@ -36,7 +36,7 @@
 #include <netinet/in.h>
 #include <net/if.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 #define MAXPRIOLEN 24
 #define MTAB "/etc/mtab"
index beea5cb42e7f44d0b96a75b6f9f304145307be7e..f7c37d7c2225f422a9644897d1da5572ca46c661 100644 (file)
@@ -43,7 +43,7 @@
 #include <netinet/in.h>
 #include <net/if.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 #include <network.h>
 
 #define MAXHWLEN    18
index ec34cbcd46ce207f0f41317b81fa301a59070c4e..8a71b5590da4c1bcd3152087142340dfb13a8b4b 100644 (file)
@@ -32,7 +32,7 @@
 #include <netinet/in.h>
 #include <net/if.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 typedef int (*file_cb)(char* buffer, void *data);
 typedef int (*config_cb)(char *value, struct lxc_conf *lxc_conf);
index 9f0da89603179101390a43a5fc52c8b9dcb6c3d9..b16b29fc0516323aa064561024f6db3f9db49115 100644 (file)
@@ -24,7 +24,7 @@
 #include <unistd.h>
 #include <sys/types.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 int main(int argc, char *argv[])
 {
index af230d73da54cd5f8566b22342b559da3a0d4676..55c7e9a127602b31075cbb82bcabbaca6816ec3e 100644 (file)
@@ -31,8 +31,8 @@
 #include <netinet/in.h>
 #include <net/if.h>
 
-#include <lxc.h>
-#include "lxc_config.h"
+#include <lxc/lxc.h>
+#include <lxc/lxc_config.h>
 
 void usage(char *cmd)
 {
index f8c834a81b5ae799c139bf046aa5f926a2128fee..938b9c541c449977fb6116564bf40585ebb37d88 100644 (file)
@@ -25,7 +25,7 @@
 #include <libgen.h>
 #include <sys/types.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 void usage(char *cmd)
 {
index bbe7d1a3f28e5ed1f84fb0222ca6d029b23d0a8f..53cad0d11311bef6fb8c0de1978dbd6be7f7ac5e 100644 (file)
@@ -26,7 +26,7 @@
 #include <unistd.h>
 #include <sys/types.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 void usage(char *cmd)
 {
index f247233c4cc4d4ac74dab49f032308210ca49cc2..06d5a53b37046c0783d3b068a1cf740b1c6e6b1f 100644 (file)
@@ -26,7 +26,7 @@
 #include <libgen.h>
 #include <string.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 void usage(char *cmd)
 {
index 8939405fe17e5393d5f63941d149853eb9d9f041..ce4c40c20df9c07e0fb227329661216e228ffb52 100644 (file)
@@ -25,7 +25,7 @@
 #include <libgen.h>
 #include <sys/types.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 void usage(char *cmd)
 {
index 9f0da89603179101390a43a5fc52c8b9dcb6c3d9..b16b29fc0516323aa064561024f6db3f9db49115 100644 (file)
@@ -24,7 +24,7 @@
 #include <unistd.h>
 #include <sys/types.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 int main(int argc, char *argv[])
 {
index dcbd49fa23aaa72e5e6d83c3a4a8b691e11a130b..52b8190a14b0b3bffda0181d29f801aa01538faa 100644 (file)
@@ -29,7 +29,7 @@
 #include <stdlib.h>
 #include <sys/file.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 int lxc_get_lock(const char *name)
 {
index 3e1066c18406c9f9ed5a97b9c46f3b80f9212d13..631579c16a35e96e2545014925516dd4ca5b5ef5 100644 (file)
@@ -25,7 +25,7 @@
 #include <unistd.h>
 #include <sys/types.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 void usage(char *cmd)
 {
index a1efe5fdb4fb3e02595d891a6fd608b92fe309bd..51edd17e2b3c27a66cfec745174a723f1522f77e 100644 (file)
@@ -26,7 +26,7 @@
 #include <stdlib.h>
 #include <sys/types.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 void usage(char *cmd)
 {
index a9c75d85bd99bfb7cee7157be91fbdaf4c19e2d8..6c8fb37f40627173e2102125a1d47c39bdace6c2 100644 (file)
@@ -32,7 +32,7 @@
 #include <netinet/in.h>
 #include <net/if.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 void usage(char *cmd)
 {
index 3ef90803840bc54ef9938ff416b75edec3a16a39..740c3f1e423625a41544fa694f7f08db54f22e4a 100644 (file)
@@ -31,7 +31,7 @@
 #include <sys/stat.h>
 #include <sys/file.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 #include "monitor.h"
 
 static char *strstate[] = {
index 2ed34878a760bf77f63b05589dcecaec28ea24b6..9d7de2a47f7da5c999831cc9d0ab3be1b2c17641 100644 (file)
@@ -25,7 +25,7 @@
 #include <unistd.h>
 #include <sys/types.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 void usage(char *cmd)
 {
index 39a796a6992baa59bdc38f161785cad8702f3b0a..d567310c2c46f5f24dad7a7387beb5515e2bc7a2 100644 (file)
@@ -25,7 +25,7 @@
 #include <libgen.h>
 #include <sys/types.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 void usage(char *cmd)
 {
index fec80fe8ef32900db95ac67213c28a78b372bd1c..afc5b182c737b36eb84315942a195189de58770b 100644 (file)
@@ -34,7 +34,8 @@
 #include <sys/un.h>
 #include <netinet/in.h>
 #include <net/if.h>
-#include <lxc.h>
+
+#include <lxc/lxc.h>
 
 #ifndef UNIX_PATH_MAX
 #define UNIX_PATH_MAX 108
index cd7330a51ea105518ed5198da4edc55ef82f6f83..3a99c7cc85ae1c9904cab8640f3d4b1657970b23 100644 (file)
@@ -36,7 +36,7 @@
 #include <sys/prctl.h>
 #include <sys/wait.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 LXC_TTY_HANDLER(SIGINT);
 LXC_TTY_HANDLER(SIGQUIT);
index 7e9afda16791e3bc678bba1e7c25ad402390e240..cb502551b9457f6476d4d6449e8260bce7cef11d 100644 (file)
@@ -31,7 +31,7 @@
 #include <sys/stat.h>
 #include <fcntl.h>
 
-#include <lxc.h>
+#include <lxc/lxc.h>
 
 int lxc_stop(const char *name)
 {