X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fgetdomainname.c;h=95ca39947428bc6e0272794cfd02220d3102ce70;hb=969fe755730d23ba7ff21ae7511f66067d0a94d8;hp=f4c6a16147446ccb31e0806ca0a01cccecfb6753;hpb=57fdfd3f8ec62b105c53bcdf6f127c35c7fe7391;p=gnulib.git diff --git a/lib/getdomainname.c b/lib/getdomainname.c index f4c6a1614..95ca39947 100644 --- a/lib/getdomainname.c +++ b/lib/getdomainname.c @@ -1,6 +1,6 @@ /* getdomainname emulation for systems that doesn't have it. - Copyright (C) 2003, 2006 Free Software Foundation, Inc. + Copyright (C) 2003, 2006, 2008, 2009, 2010 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,7 +20,7 @@ #include /* Specification. */ -#include "getdomainname.h" +#include #include #include @@ -38,7 +38,7 @@ int getdomainname (char *name, size_t len) { - const char *result = ""; /* Hardcode your domain name if you want. */ + const char *result = ""; /* Hardcode your domain name if you want. */ size_t result_len = strlen (result); if (result_len > len)