From e17fd18ae2adc92608e3e2be0f719412110fb5c2 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 22 Oct 2015 14:43:27 +0200 Subject: [PATCH 1/4] credential-cache--daemon: remove unused #include "sigchain.h" After switching to use the tempfile module in commit 9e903316 (credential-cache--daemon: use tempfile module), no declarations from sigchain.h are used in credential-cache--daemon.c anymore. Thus, remove the #include. Signed-off-by: Tobias Klauser Signed-off-by: Junio C Hamano --- credential-cache--daemon.c | 1 - 1 file changed, 1 deletion(-) diff --git a/credential-cache--daemon.c b/credential-cache--daemon.c index eef6fce4c7..82715aa8b8 100644 --- a/credential-cache--daemon.c +++ b/credential-cache--daemon.c @@ -2,7 +2,6 @@ #include "tempfile.h" #include "credential.h" #include "unix-socket.h" -#include "sigchain.h" #include "parse-options.h" static struct tempfile socket_file; From 086ecab1a7b7bfe8d87f5403d37cca84b41dfd72 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 22 Oct 2015 14:43:28 +0200 Subject: [PATCH 2/4] diff: remove unused #include "sigchain.h" After switching to use the tempfile module in commit 284098f1 (diff: use tempfile module), no declarations from sigchain.h are used in diff.c anymore. Thus, remove the #include. Signed-off-by: Tobias Klauser Signed-off-by: Junio C Hamano --- diff.c | 1 - 1 file changed, 1 deletion(-) diff --git a/diff.c b/diff.c index 528d25ca9c..75ad32ae79 100644 --- a/diff.c +++ b/diff.c @@ -13,7 +13,6 @@ #include "run-command.h" #include "utf8.h" #include "userdiff.h" -#include "sigchain.h" #include "submodule.h" #include "ll-merge.h" #include "string-list.h" From a559263caead4cb8078b651f25f5b08a56cf406e Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 22 Oct 2015 14:43:29 +0200 Subject: [PATCH 3/4] read-cache: remove unused #include "sigchain.h" After switching to use the tempfile module in commit f6ecc62d (write_shared_index(): use tempfile module), no declarations from sigchain.h are used in read-cache.c anymore. Thus, remove the #include. Signed-off-by: Tobias Klauser Signed-off-by: Junio C Hamano --- read-cache.c | 1 - 1 file changed, 1 deletion(-) diff --git a/read-cache.c b/read-cache.c index 89be2268cd..b240c41fdc 100644 --- a/read-cache.c +++ b/read-cache.c @@ -17,7 +17,6 @@ #include "strbuf.h" #include "varint.h" #include "split-index.h" -#include "sigchain.h" #include "utf8.h" static struct cache_entry *refresh_cache_entry(struct cache_entry *ce, From 4b7c50a184a900eef5bc077d93e72c1b8f147915 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 22 Oct 2015 14:43:30 +0200 Subject: [PATCH 4/4] shallow: remove unused #include "sigchain.h" After switching to use the tempfile module in commit 6e122b44 (setup_temporary_shallow(): use tempfile module), no declarations from sigchain.h are used in read-cache.c anymore. Thus, remove the #include. Signed-off-by: Tobias Klauser Signed-off-by: Junio C Hamano --- shallow.c | 1 - 1 file changed, 1 deletion(-) diff --git a/shallow.c b/shallow.c index 2ba29a5ef5..f1518ce61a 100644 --- a/shallow.c +++ b/shallow.c @@ -10,7 +10,6 @@ #include "diff.h" #include "revision.h" #include "commit-slab.h" -#include "sigchain.h" static int is_shallow = -1; static struct stat_validity shallow_stat;