From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24937 invoked by alias); 12 Dec 2008 17:57:45 -0000 Received: (qmail 24762 invoked by alias); 12 Dec 2008 17:57:45 -0000 X-Spam-Level: * X-Spam-Status: No, hits=-1.4 required=5.0 tests=AWL,BAYES_00,KAM_MX,SPF_HELO_PASS X-Spam-Check-By: sourceware.org X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on bastion.fedora.phx.redhat.com Subject: cluster: master - logthread: Add missing prototype To: cluster-cvs-relay@redhat.com X-Project: Cluster Project X-Git-Module: cluster.git X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 9f1a03dd08f26648c6b9f76ef4704a603407216a X-Git-Newrev: 8c7ee23a92d91702a3c1052292888a84354dfd05 From: Lon Hohberger Message-Id: <20081212175637.79823C024D@lists.fedorahosted.org> Date: Fri, 12 Dec 2008 17:57:00 -0000 X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 Mailing-List: contact cluster-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: cluster-cvs-owner@sourceware.org X-SW-Source: 2008-q4/txt/msg00501.txt.bz2 Gitweb: http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=8c7ee23a92d91702a3c1052292888a84354dfd05 Commit: 8c7ee23a92d91702a3c1052292888a84354dfd05 Parent: 9f1a03dd08f26648c6b9f76ef4704a603407216a Author: Lon Hohberger AuthorDate: Fri Dec 12 12:56:11 2008 -0500 Committer: Lon Hohberger CommitterDate: Fri Dec 12 12:56:11 2008 -0500 logthread: Add missing prototype --- common/liblogthread/liblogthread.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/common/liblogthread/liblogthread.h b/common/liblogthread/liblogthread.h index 0991d24..ace7abb 100644 --- a/common/liblogthread/liblogthread.h +++ b/common/liblogthread/liblogthread.h @@ -12,6 +12,7 @@ int logt_init(char *name, int mode, int syslog_facility, int syslog_priority, void logt_conf(char *name, int mode, int syslog_facility, int syslog_priority, int logfile_priority, char *logfile); void logt_exit(void); +int logt_reinit(void); void logt_print(int level, char *fmt, ...) __attribute__((format(printf, 2, 3)));;