diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2015-10-22 14:43:27 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-10-22 11:12:37 -0700 |
commit | e17fd18ae2adc92608e3e2be0f719412110fb5c2 (patch) | |
tree | 9f95974e4e0ee37bb518b16deb344bf0a52759b8 | |
parent | credential-cache--daemon: use tempfile module (diff) | |
download | tgif-e17fd18ae2adc92608e3e2be0f719412110fb5c2.tar.xz |
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 <tklauser@distanz.ch>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | credential-cache--daemon.c | 1 |
1 files changed, 0 insertions, 1 deletions
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; |