php: Update from 7.1.1 to 7.1.2 and enable pcntl
[termux-packages] / packages / git / config.c.patch
CommitLineData
40c3588b
FF
1diff -u -r ../git-2.9.0/config.c ./config.c
2--- ../git-2.9.0/config.c 2016-06-13 15:07:49.000000000 -0400
3+++ ./config.c 2016-06-19 20:16:44.473791157 -0400
11c62dd2
FF
4@@ -49,6 +49,25 @@
5 */
6 static struct config_set the_config_set;
7
8+/*
9+ * Protecting the project-specific git configuration file (.git/config) is
10+ * not possible on a shared file system on Android, which on an unpatched
11+ * git causes operations such as clone to fail with an error message.
12+ *
13+ * For the Termux git package we introduce a warning about the configuration
14+ * file being unprotected, but proceed in order to allow git repositories
15+ * to be cloned to shared storage accessible to other apps.
16+ */
17+static void termux_warn_once_about_lockfile()
18+{
19+ static int already_warned;
20+ if (!already_warned) {
21+ warning("Cannot protect .git/config on this file system"
22+ " - do not store sensitive information here.");
23+ already_warned = 1;
24+ }
25+}
26+
27 static int config_file_fgetc(struct config_source *conf)
28 {
29 return getc_unlocked(conf->u.file);
40c3588b 30@@ -2123,9 +2142,13 @@
11c62dd2
FF
31 in_fd = -1;
32
33 if (chmod(get_lock_file_path(lock), st.st_mode & 07777) < 0) {
34+#ifdef __ANDROID__
35+ termux_warn_once_about_lockfile();
36+#else
40c3588b 37 error_errno("chmod on %s failed", get_lock_file_path(lock));
11c62dd2
FF
38 ret = CONFIG_NO_WRITE;
39 goto out_free;
40+#endif
41 }
42
43 if (store.seen == 0)
40c3588b 44@@ -2330,9 +2353,13 @@
11c62dd2
FF
45 fstat(fileno(config_file), &st);
46
47 if (chmod(get_lock_file_path(lock), st.st_mode & 07777) < 0) {
48+#ifdef __ANDROID__
49+ termux_warn_once_about_lockfile();
50+#else
40c3588b
FF
51 ret = error_errno("chmod on %s failed",
52 get_lock_file_path(lock));
11c62dd2
FF
53 goto out;
54+#endif
55 }
56
57 while (fgets(buf, sizeof(buf), config_file)) {