diff options
author | Carlos Martín Nieto <cmn@dwim.me> | 2015-06-25 12:48:44 +0200 |
---|---|---|
committer | Carlos Martín Nieto <cmn@dwim.me> | 2015-06-25 12:48:44 +0200 |
commit | c2418f461374a618504c261a4c71cdb01bab9f68 (patch) | |
tree | bd608906dc1244c19de052166ee6931abb2f9c98 /include/git2/remote.h | |
parent | daacf96d101b9d2100a5028090b5af5249d8893d (diff) | |
download | libgit2-cmn/rename-unspecified.tar.gz |
Rename FALLBACK to UNSPECIFIEDcmn/rename-unspecified
Fallback describes the mechanism, while unspecified explains what the
user is thinking.
Diffstat (limited to 'include/git2/remote.h')
-rw-r--r-- | include/git2/remote.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/git2/remote.h b/include/git2/remote.h index ccd0b43f4..e47f00881 100644 --- a/include/git2/remote.h +++ b/include/git2/remote.h @@ -475,7 +475,7 @@ typedef enum { /** * Use the setting from the configuration */ - GIT_FETCH_PRUNE_FALLBACK, + GIT_FETCH_PRUNE_UNSPECIFIED, /** * Force pruning on */ @@ -495,7 +495,7 @@ typedef enum { /** * Use the setting from the configuration. */ - GIT_REMOTE_DOWNLOAD_TAGS_FALLBACK = 0, + GIT_REMOTE_DOWNLOAD_TAGS_UNSPECIFIED = 0, /** * Ask the server for tags pointing to objects we're already * downloading. @@ -541,7 +541,7 @@ typedef struct { } git_fetch_options; #define GIT_FETCH_OPTIONS_VERSION 1 -#define GIT_FETCH_OPTIONS_INIT { GIT_FETCH_OPTIONS_VERSION, GIT_REMOTE_CALLBACKS_INIT, GIT_FETCH_PRUNE_FALLBACK, 1 } +#define GIT_FETCH_OPTIONS_INIT { GIT_FETCH_OPTIONS_VERSION, GIT_REMOTE_CALLBACKS_INIT, GIT_FETCH_PRUNE_UNSPECIFIED, 1 } /** * Initializes a `git_fetch_options` with default values. Equivalent to |