ppp-manager: fix build with Linux 3.2.0 headers

Fixes build with Ubuntu 12.04.

In file included from ppp-manager/nm-ppp-manager.c:42:0:
/usr/include/linux/if_ppp.h:103:16: error: field 'b' has incomplete type
/usr/include/linux/if_ppp.h:108:21: error: field 'b' has incomplete type

(cherry picked from commit 22b99e3bbb)
This commit is contained in:
Lubomir Rintel 2015-05-15 16:37:20 +02:00 committed by Thomas Haller
parent 1d6eac884e
commit b5733c1916

View file

@ -39,6 +39,7 @@
#ifndef aligned_u64
#define aligned_u64 unsigned long long __attribute__((aligned(8)))
#endif
#include <linux/if.h>
#include <linux/if_ppp.h>
#include "NetworkManagerUtils.h"