diff options
author | Harshavardhana Ranganath <harsha@gluster.com> | 2009-08-10 02:17:43 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-08-17 14:37:30 -0700 |
commit | 95ee2689a6684e8e2436d5e8256c170ab3161673 (patch) | |
tree | 9c8fbd4f8212b03a078237cbd88e9ce1502b19ed | |
parent | 57a6cb9806ad9d99e6866a21d16fcb1bafef000c (diff) |
glusterfs log prints "TLA Revision" tag, remove it and reflect git instead
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
-rw-r--r-- | glusterfsd/src/glusterfsd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/glusterfsd/src/glusterfsd.c b/glusterfsd/src/glusterfsd.c index d658c0e09..899561372 100644 --- a/glusterfsd/src/glusterfsd.c +++ b/glusterfsd/src/glusterfsd.c @@ -177,14 +177,14 @@ _gf_dump_details (int argc, char **argv) mypid = getpid (); uname_ret = uname (&uname_buf); - /* Which TLA? What time? */ + /* Which git? What time? */ strftime (timestr, 256, "%Y-%m-%d %H:%M:%S", tm); fprintf (gf_log_logfile, "========================================" "========================================\n"); - fprintf (gf_log_logfile, "Version : %s %s built on %s %s\n", + fprintf (gf_log_logfile, "Version : %s %s built on %s %s\n", PACKAGE_NAME, PACKAGE_VERSION, __DATE__, __TIME__); - fprintf (gf_log_logfile, "TLA Revision : %s\n", + fprintf (gf_log_logfile, "git: %s\n", GLUSTERFS_REPOSITORY_REVISION); fprintf (gf_log_logfile, "Starting Time: %s\n", timestr); fprintf (gf_log_logfile, "Command line : "); |