diff options
author | Esteban Manchado Velázquez <emanchado@demiurgo.org> | 2012-02-06 22:04:24 +0100 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-03-08 20:49:23 -0500 |
commit | 8a633a3ebd2250f296b166e1c57a130f5589db37 (patch) | |
tree | e225139fd7450a710efd7b0bbdbab397f5abd9dd | |
parent | 4e44024cedcd8c1b5e7b7a801023f14d916f1aca (diff) | |
download | tor-8a633a3ebd2250f296b166e1c57a130f5589db37.tar tor-8a633a3ebd2250f296b166e1c57a130f5589db37.tar.gz |
Small fix in tor_sscanf documentation
-rw-r--r-- | src/common/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/util.c b/src/common/util.c index f35a7963b..99af58a0a 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 <b>buf</b> according to <b>pattern</b> * 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. * |