Skip to content

Commit e5cf6d3

Browse files
Alex Vandivergitster
authored andcommitted
dir.c: fix comments to agree with argument name
Signed-off-by: Alex Vandiver <[email protected]> Signed-off-by: Nipunn Koorapati <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 47ae905 commit e5cf6d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dir.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1033,9 +1033,9 @@ static int add_patterns_from_buffer(char *buf, size_t size,
10331033
* an index if 'istate' is non-null), parse it and store the
10341034
* exclude rules in "pl".
10351035
*
1036-
* If "ss" is not NULL, compute SHA-1 of the exclude file and fill
1036+
* If "oid_stat" is not NULL, compute oid of the exclude file and fill
10371037
* stat data from disk (only valid if add_patterns returns zero). If
1038-
* ss_valid is non-zero, "ss" must contain good value as input.
1038+
* oid_stat.valid is non-zero, "oid_stat" must contain good value as input.
10391039
*/
10401040
static int add_patterns(const char *fname, const char *base, int baselen,
10411041
struct pattern_list *pl, struct index_state *istate,
@@ -1083,7 +1083,7 @@ static int add_patterns(const char *fname, const char *base, int baselen,
10831083
int pos;
10841084
if (oid_stat->valid &&
10851085
!match_stat_data_racy(istate, &oid_stat->stat, &st))
1086-
; /* no content change, ss->sha1 still good */
1086+
; /* no content change, oid_stat->oid still good */
10871087
else if (istate &&
10881088
(pos = index_name_pos(istate, fname, strlen(fname))) >= 0 &&
10891089
!ce_stage(istate->cache[pos]) &&

0 commit comments

Comments
 (0)