update git patch to current git
This commit is contained in:
parent
d3d2e51ddf
commit
d89da41855
1 changed files with 11 additions and 11 deletions
|
@ -1,7 +1,7 @@
|
||||||
From 6134cc328f513e32895462e884487513b28029ba Mon Sep 17 00:00:00 2001
|
From 1a5b148a9be4a4947a691351dc694c6e265060b1 Mon Sep 17 00:00:00 2001
|
||||||
From: Joey Hess <joey@kitenet.net>
|
From: Joey Hess <joey@kitenet.net>
|
||||||
Date: Wed, 13 Aug 2014 13:50:56 -0400
|
Date: Thu, 16 Oct 2014 12:29:25 -0400
|
||||||
Subject: [PATCH] avoid using of chmod on android when changing config
|
Subject: [PATCH] void using of chmod on android when changing config
|
||||||
|
|
||||||
This breaks on Android's /sdcard, which has a variety of FUSE
|
This breaks on Android's /sdcard, which has a variety of FUSE
|
||||||
implentations, all total shite.
|
implentations, all total shite.
|
||||||
|
@ -10,17 +10,17 @@ implentations, all total shite.
|
||||||
1 file changed, 4 insertions(+)
|
1 file changed, 4 insertions(+)
|
||||||
|
|
||||||
diff --git a/config.c b/config.c
|
diff --git a/config.c b/config.c
|
||||||
index 058505c..16854b2 100644
|
index 15a2983..cb0db4d 100644
|
||||||
--- a/config.c
|
--- a/config.c
|
||||||
+++ b/config.c
|
+++ b/config.c
|
||||||
@@ -1634,12 +1634,14 @@ int git_config_set_multivar_in_file(const char *config_filename,
|
@@ -2041,12 +2041,14 @@ int git_config_set_multivar_in_file(const char *config_filename,
|
||||||
MAP_PRIVATE, in_fd, 0);
|
MAP_PRIVATE, in_fd, 0);
|
||||||
close(in_fd);
|
close(in_fd);
|
||||||
|
|
||||||
+ /* not on android
|
+ /* not on android
|
||||||
if (chmod(lock->filename, st.st_mode & 07777) < 0) {
|
if (chmod(lock->filename.buf, st.st_mode & 07777) < 0) {
|
||||||
error("chmod on %s failed: %s",
|
error("chmod on %s failed: %s",
|
||||||
lock->filename, strerror(errno));
|
lock->filename.buf, strerror(errno));
|
||||||
ret = CONFIG_NO_WRITE;
|
ret = CONFIG_NO_WRITE;
|
||||||
goto out_free;
|
goto out_free;
|
||||||
}
|
}
|
||||||
|
@ -28,14 +28,14 @@ index 058505c..16854b2 100644
|
||||||
|
|
||||||
if (store.seen == 0)
|
if (store.seen == 0)
|
||||||
store.seen = 1;
|
store.seen = 1;
|
||||||
@@ -1813,11 +1815,13 @@ int git_config_rename_section_in_file(const char *config_filename,
|
@@ -2224,11 +2226,13 @@ int git_config_rename_section_in_file(const char *config_filename,
|
||||||
|
|
||||||
fstat(fileno(config_file), &st);
|
fstat(fileno(config_file), &st);
|
||||||
|
|
||||||
+ /* not on android
|
+ /* not on android
|
||||||
if (chmod(lock->filename, st.st_mode & 07777) < 0) {
|
if (chmod(lock->filename.buf, st.st_mode & 07777) < 0) {
|
||||||
ret = error("chmod on %s failed: %s",
|
ret = error("chmod on %s failed: %s",
|
||||||
lock->filename, strerror(errno));
|
lock->filename.buf, strerror(errno));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
+ */
|
+ */
|
||||||
|
@ -43,5 +43,5 @@ index 058505c..16854b2 100644
|
||||||
while (fgets(buf, sizeof(buf), config_file)) {
|
while (fgets(buf, sizeof(buf), config_file)) {
|
||||||
int i;
|
int i;
|
||||||
--
|
--
|
||||||
2.1.0.rc1
|
2.1.1
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue