verify_lock(): do not capitalize error messages
Our convention is for error messages to start with a lower-case letter. Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
33ffc176d6
commit
000f0da57a
4
refs.c
4
refs.c
@ -2234,12 +2234,12 @@ static int verify_lock(struct ref_lock *lock,
|
|||||||
mustexist ? RESOLVE_REF_READING : 0,
|
mustexist ? RESOLVE_REF_READING : 0,
|
||||||
lock->old_sha1, NULL)) {
|
lock->old_sha1, NULL)) {
|
||||||
int save_errno = errno;
|
int save_errno = errno;
|
||||||
strbuf_addf(err, "Can't verify ref %s", lock->ref_name);
|
strbuf_addf(err, "can't verify ref %s", lock->ref_name);
|
||||||
errno = save_errno;
|
errno = save_errno;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (hashcmp(lock->old_sha1, old_sha1)) {
|
if (hashcmp(lock->old_sha1, old_sha1)) {
|
||||||
strbuf_addf(err, "Ref %s is at %s but expected %s",
|
strbuf_addf(err, "ref %s is at %s but expected %s",
|
||||||
lock->ref_name,
|
lock->ref_name,
|
||||||
sha1_to_hex(lock->old_sha1),
|
sha1_to_hex(lock->old_sha1),
|
||||||
sha1_to_hex(old_sha1));
|
sha1_to_hex(old_sha1));
|
||||||
|
Loading…
Reference in New Issue
Block a user