summaryrefslogtreecommitdiff
path: root/src/libstddjb
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2023-02-12 02:38:09 +0000
committerLaurent Bercot <ska@appnovation.com>2023-02-12 02:38:09 +0000
commiteb8bee59fdea19d6b34509c7c2ce6dbd459681a5 (patch)
treec4449b956a19f95f6f909254c91bb7cb30621ce7 /src/libstddjb
parenta10514072f27ff9f4a6ab308b3bccfd4628ef2aa (diff)
downloadskalibs-eb8bee59fdea19d6b34509c7c2ce6dbd459681a5.tar.xz
Tables should be const
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libstddjb')
-rw-r--r--src/libstddjb/ip6_scan.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libstddjb/ip6_scan.c b/src/libstddjb/ip6_scan.c
index db86ceb..b0e5b56 100644
--- a/src/libstddjb/ip6_scan.c
+++ b/src/libstddjb/ip6_scan.c
@@ -1,13 +1,14 @@
/* ISC license. */
#include <errno.h>
+
#include <skalibs/uint16.h>
#include <skalibs/fmtscan.h>
size_t ip6_scan (char const *s, char *ip6)
{
- static const unsigned char class[256] = "2222222222222222222222222222222222222222222222220000000000122222200000022222222222222222222222222000000222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222" ;
- static const unsigned char table[5][3] = { "\024#\005", "\024\"\005", "\024\005\006", "\005\002\005", "\024\t\016" } ;
+ static unsigned char const class[256] = "2222222222222222222222222222222222222222222222220000000000122222200000022222222222222222222222222000000222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222" ;
+ static unsigned char const table[5][3] = { "\024#\005", "\024\"\005", "\024\005\006", "\005\002\005", "\024\t\016" } ;
uint16_t tmp[8] = { 0, 0, 0, 0, 0, 0, 0, 0 } ;
size_t i = 0 ;
unsigned int pos = 8, j = 0, state = 0 ;