summaryrefslogtreecommitdiffstats
path: root/glusterfsd
diff options
context:
space:
mode:
authorHarshavardhana Ranganath <harsha@gluster.com>2009-08-10 02:17:43 +0000
committerAnand V. Avati <avati@dev.gluster.com>2009-08-17 14:37:46 -0700
commit028e584b205faf7f136c8846913335c04e174074 (patch)
tree480e344119b23c0e7e4099bd7d6eaaf211a0091d /glusterfsd
parent8dfdde57b38576270dd54f610b80f1288a16f09b (diff)
glusterfs log prints "TLA Revision" tag, remove it and reflect git instead
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
Diffstat (limited to 'glusterfsd')
-rw-r--r--glusterfsd/src/glusterfsd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/glusterfsd/src/glusterfsd.c b/glusterfsd/src/glusterfsd.c
index 1864424aa00..37a4f32ba1b 100644
--- a/glusterfsd/src/glusterfsd.c
+++ b/glusterfsd/src/glusterfsd.c
@@ -165,14 +165,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 : ");