From e17fd18ae2adc92608e3e2be0f719412110fb5c2 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Thu, 22 Oct 2015 14:43:27 +0200 Subject: [PATCH] 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;