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=3ccd6793aa2973ab5d6b5642192eabbfcf247096 The branch, master has been updated via 3ccd6793aa2973ab5d6b5642192eabbfcf247096 (commit) from bde3c7b21d7270174285956b81329efe84d50ba4 (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 3ccd6793aa2973ab5d6b5642192eabbfcf247096 Author: Marc - A. Dahlhaus <[EMAIL PROTECTED]> 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 <[EMAIL PROTECTED]> ----------------------------------------------------------------------- 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 c22dc3c..15646e6 100644 --- a/dlm/tool/main.c +++ b/dlm/tool/main.c @@ -102,8 +102,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 4af78a2..743559f 100644 --- a/group/daemon/main.c +++ b/group/daemon/main.c @@ -887,7 +887,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 dc305e7..e08f805 100644 --- a/group/dlm_controld/main.c +++ b/group/dlm_controld/main.c @@ -1094,7 +1094,8 @@ static void read_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 a31a2cc..dddb74b 100644 --- a/group/gfs_controld/main.c +++ b/group/gfs_controld/main.c @@ -866,7 +866,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 0a63aae..2d6d23d 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
