Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
builtin/reflog: convert remaining unsigned char uses to object_id
author
brian m. carlson
<sandals@crustytoothpaste.net>
Sun, 15 Oct 2017 22:06:58 +0000
(22:06 +0000)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 16 Oct 2017 02:05:51 +0000
(11:05 +0900)
Convert the remaining uses of unsigned char [20] to struct object_id.
This conversion is needed for dwim_log.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/reflog.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
cca5fa6
)
diff --git
a/builtin/reflog.c
b/builtin/reflog.c
index 2067cca5b1ec4ed141a3e404cb7738c9b0ebc5d9..302fafbeefd7049d291824ec5c3aa48870e036c1 100644
(file)
--- a/
builtin/reflog.c
+++ b/
builtin/reflog.c
@@
-42,7
+42,7
@@
struct expire_reflog_policy_cb {
};
struct collected_reflog {
};
struct collected_reflog {
-
unsigned char sha1[20]
;
+
struct object_id oid
;
char reflog[FLEX_ARRAY];
};
char reflog[FLEX_ARRAY];
};
@@
-385,7
+385,7
@@
static int collect_reflog(const char *ref, const struct object_id *oid, int unus
struct collect_reflog_cb *cb = cb_data;
FLEX_ALLOC_STR(e, reflog, ref);
struct collect_reflog_cb *cb = cb_data;
FLEX_ALLOC_STR(e, reflog, ref);
-
hashcpy(e->sha1, oid->hash
);
+
oidcpy(&e->oid, oid
);
ALLOC_GROW(cb->e, cb->nr + 1, cb->alloc);
cb->e[cb->nr++] = e;
return 0;
ALLOC_GROW(cb->e, cb->nr + 1, cb->alloc);
cb->e[cb->nr++] = e;
return 0;
@@
-589,7
+589,7
@@
static int cmd_reflog_expire(int argc, const char **argv, const char *prefix)
for (i = 0; i < collected.nr; i++) {
struct collected_reflog *e = collected.e[i];
set_reflog_expiry_param(&cb.cmd, explicit_expiry, e->reflog);
for (i = 0; i < collected.nr; i++) {
struct collected_reflog *e = collected.e[i];
set_reflog_expiry_param(&cb.cmd, explicit_expiry, e->reflog);
- status |= reflog_expire(e->reflog, e->
sha1
, flags,
+ status |= reflog_expire(e->reflog, e->
oid.hash
, flags,
reflog_expiry_prepare,
should_expire_reflog_ent,
reflog_expiry_cleanup,
reflog_expiry_prepare,
should_expire_reflog_ent,
reflog_expiry_cleanup,
@@
-601,13
+601,13
@@
static int cmd_reflog_expire(int argc, const char **argv, const char *prefix)
for (; i < argc; i++) {
char *ref;
for (; i < argc; i++) {
char *ref;
-
unsigned char sha1[20]
;
- if (!dwim_log(argv[i], strlen(argv[i]),
sha1
, &ref)) {
+
struct object_id oid
;
+ if (!dwim_log(argv[i], strlen(argv[i]),
oid.hash
, &ref)) {
status |= error("%s points nowhere!", argv[i]);
continue;
}
set_reflog_expiry_param(&cb.cmd, explicit_expiry, ref);
status |= error("%s points nowhere!", argv[i]);
continue;
}
set_reflog_expiry_param(&cb.cmd, explicit_expiry, ref);
- status |= reflog_expire(ref,
sha1
, flags,
+ status |= reflog_expire(ref,
oid.hash
, flags,
reflog_expiry_prepare,
should_expire_reflog_ent,
reflog_expiry_cleanup,
reflog_expiry_prepare,
should_expire_reflog_ent,
reflog_expiry_cleanup,
@@
-659,7
+659,7
@@
static int cmd_reflog_delete(int argc, const char **argv, const char *prefix)
for ( ; i < argc; i++) {
const char *spec = strstr(argv[i], "@{");
for ( ; i < argc; i++) {
const char *spec = strstr(argv[i], "@{");
-
unsigned char sha1[20]
;
+
struct object_id oid
;
char *ep, *ref;
int recno;
char *ep, *ref;
int recno;
@@
-668,7
+668,7
@@
static int cmd_reflog_delete(int argc, const char **argv, const char *prefix)
continue;
}
continue;
}
- if (!dwim_log(argv[i], spec - argv[i],
sha1
, &ref)) {
+ if (!dwim_log(argv[i], spec - argv[i],
oid.hash
, &ref)) {
status |= error("no reflog for '%s'", argv[i]);
continue;
}
status |= error("no reflog for '%s'", argv[i]);
continue;
}
@@
-683,7
+683,7
@@
static int cmd_reflog_delete(int argc, const char **argv, const char *prefix)
cb.cmd.expire_total = 0;
}
cb.cmd.expire_total = 0;
}
- status |= reflog_expire(ref,
sha1
, flags,
+ status |= reflog_expire(ref,
oid.hash
, flags,
reflog_expiry_prepare,
should_expire_reflog_ent,
reflog_expiry_cleanup,
reflog_expiry_prepare,
should_expire_reflog_ent,
reflog_expiry_cleanup,