From 4dc83290f7269b7f60934ced46ceda90adeb6a52 Mon Sep 17 00:00:00 2001 From: "Artyom V. Poptsov" Date: Tue, 18 Nov 2025 21:38:14 +0300 Subject: [PATCH] gnu: Fix whitespace issues in "dns" module. * gnu/packages/dns.scm: Fix whitespace issues. Change-Id: Ibf08abc836ab6b37646ec9c3db25d4b5979ea618 --- gnu/packages/dns.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index 9f59a3e7cf1..2f4efbffcde 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -23,6 +23,7 @@ ;;; Copyright © 2023 Hilton Chain ;;; Copyright © 2024 John Kehayias ;;; Copyright © 2024, 2025 Ashish SHUKLA +;;; Copyright © 2025 Artyom V. Poptsov ;;; ;;; This file is part of GNU Guix. ;;; @@ -720,7 +721,7 @@ struct protoent *getprotobyname(const char *name) { p->p_name = \"udp\"; p->p_proto = 17; p->p_aliases[0] = \"UDP\"; - } else + } else p = NULL; return p; } @@ -756,7 +757,7 @@ struct servent *getservbyname(const char *name, const char *proto) { s->s_name = \"domain\"; s->s_port = htons(53); s->s_proto = buf; - } else + } else s = NULL; return s; }