summaryrefslogtreecommitdiff
path: root/p11-kit/uri.c
diff options
context:
space:
mode:
authorStef Walter <stefw@collabora.co.uk>2011-05-30 13:12:01 +0200
committerStef Walter <stefw@collabora.co.uk>2011-05-30 13:12:46 +0200
commitb3b68fcb1d3fc4958acc6f6528fb88e7c87b7512 (patch)
tree9e0b82ee3d64cde52d0f6e62c7919a4461d248f3 /p11-kit/uri.c
parent2aa964160a1615077db18b03a6c72c286c27791f (diff)
downloadp11-kit-b3b68fcb1d3fc4958acc6f6528fb88e7c87b7512.tar.gz
Add function p11_kit_uri_space_strlen() for figuring out the length
of space terminated strings.
Diffstat (limited to 'p11-kit/uri.c')
-rw-r--r--p11-kit/uri.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/p11-kit/uri.c b/p11-kit/uri.c
index 55b0809..b3cbc6a 100644
--- a/p11-kit/uri.c
+++ b/p11-kit/uri.c
@@ -724,8 +724,8 @@ p11_kit_uri_new (void)
return uri;
}
-static size_t
-space_strlen (const unsigned char *string, size_t max_length)
+size_t
+p11_kit_uri_space_strlen (const unsigned char *string, size_t max_length)
{
size_t i = max_length - 1;
@@ -796,7 +796,7 @@ format_struct_string (char **string, size_t *length, int *is_first,
if (!value[0])
return 1;
- len = space_strlen (value, value_max);
+ len = p11_kit_uri_space_strlen (value, value_max);
return format_encode_string (string, length, is_first, name, value, len);
}