From aac3d01facc3807d53e5287b316ca103a240b68f Mon Sep 17 00:00:00 2001 From: Waldemar Kornewald Date: Mon, 19 Jan 2004 22:48:52 +0000 Subject: [PATCH] Renamed interface_id to ppp_interface_id. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6160 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/bin/pppconfig/pppconfig.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/apps/bin/pppconfig/pppconfig.cpp b/src/apps/bin/pppconfig/pppconfig.cpp index 93c5343bb4..ed1d510073 100644 --- a/src/apps/bin/pppconfig/pppconfig.cpp +++ b/src/apps/bin/pppconfig/pppconfig.cpp @@ -1,9 +1,9 @@ -//---------------------------------------------------------------------- +//----------------------------------------------------------------------- // This software is part of the OpenBeOS distribution and is covered // by the OpenBeOS license. // -// Copyright (c) 2003 Waldemar Kornewald, Waldemar.Kornewald@web.de -//--------------------------------------------------------------------- +// Copyright (c) 2003-2004 Waldemar Kornewald, Waldemar.Kornewald@web.de +//----------------------------------------------------------------------- #include #include @@ -83,7 +83,7 @@ show(ppp_interface_filter filter = PPP_REGISTERED_INTERFACES) } int32 count; - interface_id *interfaces = manager.Interfaces(&count, filter); + ppp_interface_id *interfaces = manager.Interfaces(&count, filter); if(!interfaces) { fprintf(stderr, "Error: Could not get interfaces information!\n"); @@ -296,7 +296,7 @@ delete_interface(const char *name) return -1; } - interface_id interface; + ppp_interface_id interface; if(!strncmp(name, "ppp", 3) && strlen(name) > 3 && isdigit(name[3])) interface = manager.InterfaceWithUnit(atoi(name + 3));