use skip_prefix to avoid repeated calculations
commitde8118e153c5e527263086605e437ccca5d4f1ef
authorJeff King <peff@peff.net>
Wed, 18 Jun 2014 19:57:17 +0000 (18 15:57 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 20 Jun 2014 17:45:19 +0000 (20 10:45 -0700)
treeec37ddbc7532f1828d4535ab375805a6f794cb7e
parent6d87780399e1196932cd5ea72f84aa90224e7402
use skip_prefix to avoid repeated calculations

In some cases, we use starts_with to check for a prefix, and
then use an already-calculated prefix length to advance a
pointer past the prefix. There are no magic numbers or
duplicated strings here, but we can still make the code
simpler and more obvious by using skip_prefix.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
help.c
http.c