From 39071732d8e99154da98004245ea4d69be935ee4 Mon Sep 17 00:00:00 2001 From: Ferry Huberts Date: Wed, 26 Oct 2011 14:03:25 +0200 Subject: [PATCH] PUD: rename a function Signed-off-by: Ferry Huberts --- lib/pud/src/configuration.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pud/src/configuration.c b/lib/pud/src/configuration.c index 92a94ab1..0663731f 100644 --- a/lib/pud/src/configuration.c +++ b/lib/pud/src/configuration.c @@ -318,7 +318,7 @@ static bool setupNodeIdBinaryLongLong(unsigned long long min, Validate whether the configured nodeId is valid w.r.t. the configured nodeIdType, for types that are strings */ -static bool setupNodeIdNumberForOlsrCacheAndValidateString(void) { +static bool setupNodeIdBinaryString(void) { bool invalidChars; char report[256]; @@ -355,7 +355,7 @@ static bool setupNodeIdBinaryAndValidate(NodeIdType nodeIdTypeNumber) { PUD_NODEIDTYPE_TETRA_BYTES); case PUD_NODEIDTYPE_DNS: /* DNS name */ - return setupNodeIdNumberForOlsrCacheAndValidateString(); + return setupNodeIdBinaryString(); case PUD_NODEIDTYPE_MMSI: /* an AIS MMSI number */ return setupNodeIdBinaryLongLong(0LL, 999999999LL, -- 2.20.1