X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fbasic%2Fhostname-util.c;h=3bd3a4d7b3634a4d4175600a6a639a828aed5265;hb=bc983c987eb3f92eceb373ba4e1c2076b0b3ca88;hp=23366e57bdf9ef7dee68e04cecc56dea9bc48043;hpb=a2715690ec6b3b9003953bda81020c9910f6c22f;p=elogind.git diff --git a/src/basic/hostname-util.c b/src/basic/hostname-util.c index 23366e57b..3bd3a4d7b 100644 --- a/src/basic/hostname-util.c +++ b/src/basic/hostname-util.c @@ -1,5 +1,3 @@ -/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ - /*** This file is part of systemd. @@ -19,14 +17,21 @@ along with systemd; If not, see . ***/ -#include +#if defined(__GLIBC__) +# include +#endif // defined(__GLIBC__) +#include +#include +#include +#include #include +#include //#include "fd-util.h" #include "fileio.h" #include "hostname-util.h" +//#include "macro.h" #include "string-util.h" -#include "util.h" #if 0 /// UNNEEDED by elogind bool hostname_is_set(void) { @@ -95,7 +100,7 @@ bool hostname_is_valid(const char *s, bool allow_trailing_dot) { return false; dot = true; - n_dots ++; + n_dots++; } else { if (!hostname_valid_char(*p)) return false;