From 003fff38e753d2d7cacaa3afd3f942f938408334 Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Fri, 18 Dec 2020 16:09:10 +0100 Subject: [PATCH] virlease: Use virTrimSpaces() instead of open coded alternative MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit In virLeaseNew() we are trying to remove trailing space (per comment it may happen that older versions of dnsmasq put it into an env variable). Well, instead of open coding it, we can use virTrimSpaces(). Signed-off-by: Michal Privoznik Reviewed-by: Daniel P. Berrangé --- src/util/virlease.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/util/virlease.c b/src/util/virlease.c index f01cf5b9bd..edfdc6477a 100644 --- a/src/util/virlease.c +++ b/src/util/virlease.c @@ -226,8 +226,7 @@ virLeaseNew(virJSONValuePtr *lease_ret, /* Removed extraneous trailing space in DNSMASQ_LEASE_EXPIRES * (dnsmasq < 2.52) */ - if (exptime[strlen(exptime) - 1] == ' ') - exptime[strlen(exptime) - 1] = '\0'; + virTrimSpaces(exptime, NULL); } if (!exptime || -- 2.47.3