summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2021-01-05 14:45:14 +0000
committerEdward Thomson <ethomson@edwardthomson.com>2021-01-05 14:46:09 +0000
commit855f2998acfa58ce6f4a7a1a1b3d5d48475b2330 (patch)
tree050555dacd828e1bb22b2331f563b4ec63cb6109
parentf0d7922c9bafff38e12978625f467aafebe75145 (diff)
downloadlibgit2-ethomson/tttoo_many_ttts.tar.gz
blob: fix name of `GIT_BLOB_FILTER_ATTRIBUTES_FROM_HEAD`ethomson/tttoo_many_ttts
`GIT_BLOB_FILTER_ATTTRIBUTES_FROM_HEAD` is misspelled, it should be `GIT_BLOB_FILTER_ATTRIBUTES_FROM_HEAD`, and it would be if it were not for the MacBook Pro keyboard and my inattentiveness.
-rw-r--r--include/git2/blob.h2
-rw-r--r--include/git2/deprecated.h9
-rw-r--r--src/blob.c2
-rw-r--r--tests/filter/bare.c2
4 files changed, 9 insertions, 6 deletions
diff --git a/include/git2/blob.h b/include/git2/blob.h
index 8e977267d..91b2c1475 100644
--- a/include/git2/blob.h
+++ b/include/git2/blob.h
@@ -113,7 +113,7 @@ typedef enum {
* When set, filters will be loaded from a `.gitattributes` file
* in the HEAD commit.
*/
- GIT_BLOB_FILTER_ATTTRIBUTES_FROM_HEAD = (1 << 2),
+ GIT_BLOB_FILTER_ATTRIBUTES_FROM_HEAD = (1 << 2),
} git_blob_filter_flag_t;
/**
diff --git a/include/git2/deprecated.h b/include/git2/deprecated.h
index 4e43c4536..79f637a7f 100644
--- a/include/git2/deprecated.h
+++ b/include/git2/deprecated.h
@@ -80,16 +80,19 @@ typedef git_attr_value_t git_attr_t;
/**@}*/
-/** @name Deprecated Blob Functions
+/** @name Deprecated Blob Functions and Constants
*
- * These functions are retained for backward compatibility. The newer
- * versions of these functions should be preferred in all new code.
+ * These functions and enumeration values are retained for backward
+ * compatibility. The newer versions of these functions and values
+ * should be preferred in all new code.
*
* There is no plan to remove these backward compatibility values at
* this time.
*/
/**@{*/
+#define GIT_BLOB_FILTER_ATTTRIBUTES_FROM_HEAD GIT_BLOB_FILTER_ATTRIBUTES_FROM_HEAD
+
GIT_EXTERN(int) git_blob_create_fromworkdir(git_oid *id, git_repository *repo, const char *relative_path);
GIT_EXTERN(int) git_blob_create_fromdisk(git_oid *id, git_repository *repo, const char *path);
GIT_EXTERN(int) git_blob_create_fromstream(
diff --git a/src/blob.c b/src/blob.c
index 97069645c..b9739b69a 100644
--- a/src/blob.c
+++ b/src/blob.c
@@ -439,7 +439,7 @@ int git_blob_filter(
if ((opts.flags & GIT_BLOB_FILTER_NO_SYSTEM_ATTRIBUTES) != 0)
flags |= GIT_FILTER_NO_SYSTEM_ATTRIBUTES;
- if ((opts.flags & GIT_BLOB_FILTER_ATTTRIBUTES_FROM_HEAD) != 0)
+ if ((opts.flags & GIT_BLOB_FILTER_ATTRIBUTES_FROM_HEAD) != 0)
flags |= GIT_FILTER_ATTRIBUTES_FROM_HEAD;
if (!(error = git_filter_list_load(
diff --git a/tests/filter/bare.c b/tests/filter/bare.c
index 430931ee8..7319b5203 100644
--- a/tests/filter/bare.c
+++ b/tests/filter/bare.c
@@ -10,7 +10,7 @@ void test_filter_bare__initialize(void)
cl_git_pass(git_repository_open(&g_repo, "crlf.git"));
filter_opts.flags |= GIT_BLOB_FILTER_NO_SYSTEM_ATTRIBUTES;
- filter_opts.flags |= GIT_BLOB_FILTER_ATTTRIBUTES_FROM_HEAD;
+ filter_opts.flags |= GIT_BLOB_FILTER_ATTRIBUTES_FROM_HEAD;
}
void test_filter_bare__cleanup(void)