--- gvpe/src/device.C 2003/10/14 03:22:09 1.2 +++ gvpe/src/device.C 2005/07/09 02:35:42 1.9 @@ -1,7 +1,10 @@ /* device.C -- include the correct low-level implementation. + Copyright (C) 2003-2005 Marc Lehmann - This program is free software; you can redistribute it and/or modify + This file is part of GVPE. + + GVPE is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. @@ -12,8 +15,8 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + along with gvpe; if not, write to the Free Software + Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "config.h" @@ -31,7 +34,7 @@ { if (s > sizeof (data_packet)) { - slog (L_ERR, _("FATAL: allocation for network packet larger than max supported packet size (%d > %d).\n"), + slog (L_ERR, _("FATAL: allocation for network packet larger than max supported packet size (%d > %d)."), s, sizeof (data_packet)); abort (); } @@ -64,8 +67,10 @@ # include "device-tincd.C" #elif IFTYPE_native && IF_linux # include "device-linux.C" -#elif ITYPEF_native && IF_cygwin +#elif IFTYPE_native && IF_cygwin # include "device-cygwin.C" +#elif IFTYPE_native && IF_darwin +# include "device-darwin.C" #else # error No interface implementation for your IFTYPE/IFSUBTYPE combination. #endif