Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
struct ref_update: rename field "ref_name" to "refname"
author
Michael Haggerty
<mhagger@alum.mit.edu>
Mon, 7 Apr 2014 13:48:13 +0000
(15:48 +0200)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 7 Apr 2014 19:09:15 +0000
(12:09 -0700)
This is consistent with the usual nomenclature.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
refs.c
patch
|
blob
|
history
refs.h
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
b5c8ea2
)
diff --git
a/refs.c
b/refs.c
index 6984ff0aff994a46c8bfa8e650327cead7bb4546..b6778aaa12c4d79cf97c31fab84ae5949371dfbb 100644
(file)
--- a/
refs.c
+++ b/
refs.c
@@
-3274,7
+3274,7
@@
static int update_ref_write(const char *action, const char *refname,
* value or to zero to ensure the ref does not exist before update.
*/
struct ref_update {
* value or to zero to ensure the ref does not exist before update.
*/
struct ref_update {
- const char *ref
_
name;
+ const char *refname;
unsigned char new_sha1[20];
unsigned char old_sha1[20];
int flags; /* REF_NODEREF? */
unsigned char new_sha1[20];
unsigned char old_sha1[20];
int flags; /* REF_NODEREF? */
@@
-3304,7
+3304,7
@@
static void ref_transaction_free(struct ref_transaction *transaction)
for (i = 0; i < transaction->nr; i++) {
struct ref_update *update = transaction->updates[i];
for (i = 0; i < transaction->nr; i++) {
struct ref_update *update = transaction->updates[i];
- free((char *)update->ref
_
name);
+ free((char *)update->refname);
free(update);
}
free(update);
}
@@
-3322,7
+3322,7
@@
static struct ref_update *add_update(struct ref_transaction *transaction,
{
struct ref_update *update = xcalloc(1, sizeof(*update));
{
struct ref_update *update = xcalloc(1, sizeof(*update));
- update->ref
_
name = xstrdup(refname);
+ update->refname = xstrdup(refname);
ALLOC_GROW(transaction->updates, transaction->nr + 1, transaction->alloc);
transaction->updates[transaction->nr++] = update;
return update;
ALLOC_GROW(transaction->updates, transaction->nr + 1, transaction->alloc);
transaction->updates[transaction->nr++] = update;
return update;
@@
-3386,7
+3386,7
@@
static int ref_update_compare(const void *r1, const void *r2)
{
const struct ref_update * const *u1 = r1;
const struct ref_update * const *u2 = r2;
{
const struct ref_update * const *u1 = r1;
const struct ref_update * const *u2 = r2;
- return strcmp((*u1)->ref
_name, (*u2)->ref_
name);
+ return strcmp((*u1)->ref
name, (*u2)->ref
name);
}
static int ref_update_reject_duplicates(struct ref_update **updates, int n,
}
static int ref_update_reject_duplicates(struct ref_update **updates, int n,
@@
-3394,14
+3394,14
@@
static int ref_update_reject_duplicates(struct ref_update **updates, int n,
{
int i;
for (i = 1; i < n; i++)
{
int i;
for (i = 1; i < n; i++)
- if (!strcmp(updates[i - 1]->ref
_name, updates[i]->ref_
name)) {
+ if (!strcmp(updates[i - 1]->ref
name, updates[i]->ref
name)) {
const char *str =
"Multiple updates for ref '%s' not allowed.";
switch (onerr) {
case UPDATE_REFS_MSG_ON_ERR:
const char *str =
"Multiple updates for ref '%s' not allowed.";
switch (onerr) {
case UPDATE_REFS_MSG_ON_ERR:
- error(str, updates[i]->ref
_
name); break;
+ error(str, updates[i]->refname); break;
case UPDATE_REFS_DIE_ON_ERR:
case UPDATE_REFS_DIE_ON_ERR:
- die(str, updates[i]->ref
_
name); break;
+ die(str, updates[i]->refname); break;
case UPDATE_REFS_QUIET_ON_ERR:
break;
}
case UPDATE_REFS_QUIET_ON_ERR:
break;
}
@@
-3438,7
+3438,7
@@
int ref_transaction_commit(struct ref_transaction *transaction,
/* Acquire all locks while verifying old values */
for (i = 0; i < n; i++) {
/* Acquire all locks while verifying old values */
for (i = 0; i < n; i++) {
- locks[i] = update_ref_lock(updates[i]->ref
_
name,
+ locks[i] = update_ref_lock(updates[i]->refname,
(updates[i]->have_old ?
updates[i]->old_sha1 : NULL),
updates[i]->flags,
(updates[i]->have_old ?
updates[i]->old_sha1 : NULL),
updates[i]->flags,
@@
-3453,7
+3453,7
@@
int ref_transaction_commit(struct ref_transaction *transaction,
for (i = 0; i < n; i++)
if (!is_null_sha1(updates[i]->new_sha1)) {
ret = update_ref_write(msg,
for (i = 0; i < n; i++)
if (!is_null_sha1(updates[i]->new_sha1)) {
ret = update_ref_write(msg,
- updates[i]->ref
_
name,
+ updates[i]->refname,
updates[i]->new_sha1,
locks[i], onerr);
locks[i] = NULL; /* freed by update_ref_write */
updates[i]->new_sha1,
locks[i], onerr);
locks[i] = NULL; /* freed by update_ref_write */
diff --git
a/refs.h
b/refs.h
index cb799a39f7a490ab78b0e0e65d64b050d98af823..0f08def21020a166902de169dd46c63c85fdfd0e 100644
(file)
--- a/
refs.h
+++ b/
refs.h
@@
-154,7
+154,7
@@
extern void unlock_ref(struct ref_lock *lock);
extern int write_ref_sha1(struct ref_lock *lock, const unsigned char *sha1, const char *msg);
/** Setup reflog before using. **/
extern int write_ref_sha1(struct ref_lock *lock, const unsigned char *sha1, const char *msg);
/** Setup reflog before using. **/
-int log_ref_setup(const char *ref
_
name, char *logfile, int bufsize);
+int log_ref_setup(const char *refname, char *logfile, int bufsize);
/** Reads log for the value of ref during at_time. **/
extern int read_ref_at(const char *refname, unsigned long at_time, int cnt,
/** Reads log for the value of ref during at_time. **/
extern int read_ref_at(const char *refname, unsigned long at_time, int cnt,