The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/lxc/pull/1738
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) === Signed-off-by: Christian Brauner <[email protected]>
From eb37f8e2d1fca0a27180a611ffd8d13cf2b09356 Mon Sep 17 00:00:00 2001 From: Christian Brauner <[email protected]> Date: Thu, 10 Aug 2017 23:00:12 +0200 Subject: [PATCH] android: fix includes Signed-off-by: Christian Brauner <[email protected]> --- src/lxc/storage/aufs.h | 6 +----- src/lxc/storage/overlay.h | 6 +----- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/src/lxc/storage/aufs.h b/src/lxc/storage/aufs.h index dfebbe966..986fc7a43 100644 --- a/src/lxc/storage/aufs.h +++ b/src/lxc/storage/aufs.h @@ -28,11 +28,7 @@ #include <stdbool.h> #include <stdint.h> -#if IS_BIONIC -#include <../include/lxcmntent.h> -#else -#include <mntent.h> -#endif +#include "storage.h" struct lxc_storage; diff --git a/src/lxc/storage/overlay.h b/src/lxc/storage/overlay.h index c2ee7bb25..37fc8915b 100644 --- a/src/lxc/storage/overlay.h +++ b/src/lxc/storage/overlay.h @@ -30,11 +30,7 @@ #include <unistd.h> #include <sys/types.h> -#if IS_BIONIC -#include <../include/lxcmntent.h> -#else -#include <mntent.h> -#endif +#include "storage.h" struct lxc_storage;
_______________________________________________ lxc-devel mailing list [email protected] http://lists.linuxcontainers.org/listinfo/lxc-devel
