diff options
author | Vicent Marti <tanoku@gmail.com> | 2011-04-09 15:31:12 -0700 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-04-09 15:31:12 -0700 |
commit | 8416c9adccc6ee6d5aeb09153db7315622bf12a1 (patch) | |
tree | faf9fa0644f840e303344bda4c776f07da17d694 /include/git2/signature.h | |
parent | 9e9e6ae177332f5c1311eff9c9b5ca9740e04dbd (diff) | |
download | libgit2-8416c9adccc6ee6d5aeb09153db7315622bf12a1.tar.gz |
Rename `git_signature_new_now`
The new name is more cool.
Diffstat (limited to 'include/git2/signature.h')
-rw-r--r-- | include/git2/signature.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/signature.h b/include/git2/signature.h index 013ce746..44d1f285 100644 --- a/include/git2/signature.h +++ b/include/git2/signature.h @@ -57,7 +57,7 @@ GIT_EXTERN(git_signature *) git_signature_new(const char *name, const char *emai * @param email email of the person * @return the new sig, NULL on out of memory */ -GIT_EXTERN(git_signature *) git_signature_new_now(const char *name, const char *email); +GIT_EXTERN(git_signature *) git_signature_now(const char *name, const char *email); /** |