From 5875136cc24682f1acdff6552e9b53996858cc09 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20P=C3=ADsa=C5=99?= Date: Fri, 18 Mar 2016 17:45:15 +0100 Subject: [PATCH] Correct _isds_build_url_from_context() documentation MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This copies changes in _isds_build_url_from_context() documentstion from soap.c to soap.h as made in: commit 1d1041f77de2fb21629e8e8d70ee872189f2654b Author: Petr Písař Date: Wed Mar 16 21:13:59 2016 +0100 Do not use dolar in formatting strings --- src/soap.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/soap.h b/src/soap.h index 2ce12a7..37aff4b 100644 --- a/src/soap.h +++ b/src/soap.h @@ -33,8 +33,10 @@ isds_error _isds_soap(struct isds_ctx *context, const char *file, /* Build new URL from current @context and template. * @context is context carrying an URL - * @template is printf(3) format string. First argument is string of base URL - * found in @context, second argument is length of the base URL. + * @template is printf(3) format string. First argument is length of the base + * URL found in @context, second argument is the base URL, third argument is + * again the base URL. + * XXX: We cannot use "$" formatting character because it's not in the ISO C99. * @new_url is newly allocated URL built from @template. Caller must free it. * Return IE_SUCCESS, or corresponding error code and @new_url will not be * allocated. -- 2.11.4.GIT