mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-12 13:17:58 +03:00
util: Drop pointless NUL_TERMINATE macro
It's only used once and open coding it is at least as clear as using the macro. Signed-off-by: Jiri Denemark <jdenemar@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com>
This commit is contained in:
parent
54cf221b55
commit
b564ce40aa
@ -91,8 +91,6 @@
|
||||
#define STREQ_NULLABLE(a, b) (g_strcmp0(a, b) == 0)
|
||||
#define STRNEQ_NULLABLE(a, b) (g_strcmp0(a, b) != 0)
|
||||
|
||||
#define NUL_TERMINATE(buf) do { (buf)[sizeof(buf)-1] = '\0'; } while (0)
|
||||
|
||||
#ifdef WIN32
|
||||
# ifndef O_CLOEXEC
|
||||
# define O_CLOEXEC _O_NOINHERIT
|
||||
|
@ -485,7 +485,7 @@ virGetHostnameImpl(bool quiet)
|
||||
"%s", _("failed to determine host name"));
|
||||
return NULL;
|
||||
}
|
||||
NUL_TERMINATE(hostname);
|
||||
hostname[sizeof(hostname) - 1] = '\0';
|
||||
|
||||
if (STRPREFIX(hostname, "localhost") || strchr(hostname, '.')) {
|
||||
/* in this case, gethostname returned localhost (meaning we can't
|
||||
|
Loading…
Reference in New Issue
Block a user