lock_any_ref_for_update(): do not accept malformatted refs.
commita2f9fe92ebfdf9b5c458642fa0bf32b17433c6c1
authorJunio C Hamano <junkio@cox.net>
Mon, 29 Jan 2007 08:57:07 +0000 (29 00:57 -0800)
committerJunio C Hamano <junkio@cox.net>
Mon, 29 Jan 2007 08:57:07 +0000 (29 00:57 -0800)
treed1484466557729e27ba4dda475dd8c6a2e918f2c
parentdf391b192d285646fe80ca4d3cfe3c0a3beb5989
lock_any_ref_for_update(): do not accept malformatted refs.

We used to use lock_any_ref_for_update() because the command
needs to also update HEAD (which is not under refs/, so
lock_ref_sha1() cannot be used).  The function however did not
check for refs with illegal characters in them.

Use check_ref_format() to catch malformed refs.  For this check,
we specifically do not want to say having less than two levels
in the name is illegal to allow HEAD (and perhaps other special
refs in the future).

Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-update-ref.c
refs.c