From: Esteban Manchado Velázquez Date: Mon, 6 Feb 2012 21:04:24 +0000 (+0100) Subject: Small fix in tor_sscanf documentation X-Git-Tag: tor-0.2.3.13-alpha~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a633a3ebd2250f296b166e1c57a130f5589db37;p=thirdparty%2Ftor.git Small fix in tor_sscanf documentation --- diff --git a/src/common/util.c b/src/common/util.c index f35a7963b0..99af58a0ab 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -2759,7 +2759,7 @@ tor_vsscanf(const char *buf, const char *pattern, va_list ap) /** Minimal sscanf replacement: parse buf according to pattern * and store the results in the corresponding argument fields. Differs from - * sscanf in that it: Only handles %u and %x and %Ns. Does not handle + * sscanf in that it: Only handles %u, %x, %c and %Ns. Does not handle * arbitrarily long widths. %u and %x do not consume any space. Is * locale-independent. Returns -1 on malformed patterns. *