2005-04-04 Dan Williams <dcbw@redhat.com>

Patch from Tom Parker: include "nm-utils.h" for backend files that need it


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@553 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams
2005-04-04 16:24:36 +00:00
parent 737dce1fd7
commit 1e22dba1ca
5 changed files with 10 additions and 1 deletions

View File

@@ -1,4 +1,8 @@
2005-04-01 Dan Williams <dcbw@redhat.com> 2005-04-04 Dan Williams <dcbw@redhat.com>
Patch from Tom Parker: include "nm-utils.h" for backend files that need it
2005-04-04 Dan Williams <dcbw@redhat.com>
* src/NetworkManagerDevice.c: * src/NetworkManagerDevice.c:
- (nm_completion_scan_has_results): restore pre-completion-patch behavior - (nm_completion_scan_has_results): restore pre-completion-patch behavior

View File

@@ -31,6 +31,7 @@
#include "NetworkManagerUtils.h" #include "NetworkManagerUtils.h"
#include "NetworkManagerDevice.h" #include "NetworkManagerDevice.h"
#include "interface_parser.h" #include "interface_parser.h"
#include "nm-utils.h"
#define ARPING "/usr/sbin/arping" #define ARPING "/usr/sbin/arping"

View File

@@ -27,6 +27,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#include <signal.h> #include <signal.h>
#include "nm-utils.h"
/* get strnlen */ /* get strnlen */
#define __USE_GNU #define __USE_GNU

View File

@@ -26,6 +26,7 @@
#include "NetworkManagerSystem.h" #include "NetworkManagerSystem.h"
#include "NetworkManagerUtils.h" #include "NetworkManagerUtils.h"
#include "NetworkManagerDevice.h" #include "NetworkManagerDevice.h"
#include "nm-utils.h"
/* /*
* Mostly a mix of the Gentoo and RedHat Backends * Mostly a mix of the Gentoo and RedHat Backends
@@ -97,6 +98,7 @@ void nm_system_device_flush_addresses (NMDevice *dev)
gboolean nm_system_device_setup_static_ip4_config (NMDevice *dev) gboolean nm_system_device_setup_static_ip4_config (NMDevice *dev)
{ {
nm_warning ("nm_system_device_setup_static_ip4_config() is not implemented yet for this distribution.\n"); nm_warning ("nm_system_device_setup_static_ip4_config() is not implemented yet for this distribution.\n");
return FALSE;
} }

View File

@@ -25,6 +25,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include "nm-utils.h"
if_block* first; if_block* first;
if_block* last; if_block* last;