From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31620 invoked by alias); 8 May 2008 05:27:26 -0000 Received: (qmail 31589 invoked by uid 9702); 8 May 2008 05:27:25 -0000 Date: Thu, 08 May 2008 05:27:00 -0000 Message-ID: <20080508052724.31572.qmail@sourceware.org> From: fabbione@sourceware.org To: cluster-cvs@sources.redhat.com, cluster-devel@redhat.com Subject: Cluster Project branch, STABLE2, updated. cluster-2.03.02-4-g557412e X-Git-Refname: refs/heads/STABLE2 X-Git-Reftype: branch X-Git-Oldrev: d1e87179a96c22fc8716e098cfe43cc652c3b50a X-Git-Newrev: 557412e9fbe9e69cf371e16514f415389e7e5231 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-q2/txt/msg00264.txt.bz2 This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Cluster Project". http://sources.redhat.com/git/gitweb.cgi?p=cluster.git;a=commitdiff;h=557412e9fbe9e69cf371e16514f415389e7e5231 The branch, STABLE2 has been updated via 557412e9fbe9e69cf371e16514f415389e7e5231 (commit) from d1e87179a96c22fc8716e098cfe43cc652c3b50a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 557412e9fbe9e69cf371e16514f415389e7e5231 Author: Marc - A. Dahlhaus Date: Thu May 8 07:23:21 2008 +0200 [MISC] Add version string to -V options of dlm_tool and group deamons Signed-off-by: Fabio M. Di Nitto ----------------------------------------------------------------------- Summary of changes: dlm/tool/main.c | 4 ++-- group/daemon/main.c | 3 ++- group/dlm_controld/main.c | 3 ++- group/gfs_controld/main.c | 3 ++- group/tool/main.c | 4 ++-- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/dlm/tool/main.c b/dlm/tool/main.c index 814a3bb..2871674 100644 --- a/dlm/tool/main.c +++ b/dlm/tool/main.c @@ -99,8 +99,8 @@ static void decode_arguments(int argc, char **argv) break; case 'V': - printf("%s (built %s %s)\n", - prog_name, __DATE__, __TIME__); + printf("%s %s (built %s %s)\n", + prog_name, RELEASE_VERSION, __DATE__, __TIME__); /* printf("%s\n", REDHAT_COPYRIGHT); */ exit(EXIT_SUCCESS); break; diff --git a/group/daemon/main.c b/group/daemon/main.c index af7d5bd..7c60073 100644 --- a/group/daemon/main.c +++ b/group/daemon/main.c @@ -884,7 +884,8 @@ static void decode_arguments(int argc, char **argv) break; case 'V': - printf("groupd (built %s %s)\n", __DATE__, __TIME__); + printf("groupd %s (built %s %s)\n", + RELEASE_VERSION, __DATE__, __TIME__); /* printf("%s\n", REDHAT_COPYRIGHT); */ exit(EXIT_SUCCESS); break; diff --git a/group/dlm_controld/main.c b/group/dlm_controld/main.c index 98585fc..0ef731c 100644 --- a/group/dlm_controld/main.c +++ b/group/dlm_controld/main.c @@ -784,7 +784,8 @@ static void decode_arguments(int argc, char **argv) break; case 'V': - printf("dlm_controld (built %s %s)\n", __DATE__, __TIME__); + printf("dlm_controld %s (built %s %s)\n", + RELEASE_VERSION, __DATE__, __TIME__); /* printf("%s\n", REDHAT_COPYRIGHT); */ exit(EXIT_SUCCESS); break; diff --git a/group/gfs_controld/main.c b/group/gfs_controld/main.c index b2edc32..42b365f 100644 --- a/group/gfs_controld/main.c +++ b/group/gfs_controld/main.c @@ -886,7 +886,8 @@ static void decode_arguments(int argc, char **argv) break; case 'V': - printf("gfs_controld (built %s %s)\n", __DATE__, __TIME__); + printf("gfs_controld %s (built %s %s)\n", + RELEASE_VERSION, __DATE__, __TIME__); /* printf("%s\n", REDHAT_COPYRIGHT); */ exit(EXIT_SUCCESS); break; diff --git a/group/tool/main.c b/group/tool/main.c index f1915ad..d15f14f 100644 --- a/group/tool/main.c +++ b/group/tool/main.c @@ -132,8 +132,8 @@ static void decode_arguments(int argc, char **argv) break; case 'V': - printf("%s (built %s %s)\n", - prog_name, __DATE__, __TIME__); + printf("%s %s (built %s %s)\n", + prog_name, RELEASE_VERSION, __DATE__, __TIME__); /* printf("%s\n", REDHAT_COPYRIGHT); */ exit(EXIT_SUCCESS); break; hooks/post-receive -- Cluster Project