summaryrefslogtreecommitdiffstats
path: root/source3/utils/status.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-01-15 22:27:52 +0100
committerMichael Adam <obnox@samba.org>2009-01-15 22:56:01 +0100
commit39ec8791f874a0a9a853aa1497099a57c1aa1dbc (patch)
tree33519fc91211ed6aa875c06007c6ba6bf81bf8ba /source3/utils/status.c
parentda656c2e87708daf2276ad4f091452c9ec411053 (diff)
downloadsamba-39ec8791f874a0a9a853aa1497099a57c1aa1dbc.tar.gz
samba-39ec8791f874a0a9a853aa1497099a57c1aa1dbc.tar.xz
samba-39ec8791f874a0a9a853aa1497099a57c1aa1dbc.zip
s3: make better use of ccache by not including version.h in every C-file.
version.h changes rather frequently. Since it is included via includes.h, this means each C file will be a cache miss. This applies to the following situations: * When building a new package with a new Samba version * building in a git branch after calling mkversion.sh after a new commit (i.e. virtually always) This patch improves the situation in the following way: * remove inlude "version.h" from includes.h * Use samba_version_string() instead of SAMBA_VERSION_STRING in files that use no other macro from version.h instead of SAMBA_VERSION_STRING. * explicitly include "version.h" in those files that use more macros from "version.h" than just SAMBA_VERSION_STRING. Michael
Diffstat (limited to 'source3/utils/status.c')
-rw-r--r--source3/utils/status.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/status.c b/source3/utils/status.c
index 1a66af949a1..590444a42f6 100644
--- a/source3/utils/status.c
+++ b/source3/utils/status.c
@@ -406,7 +406,7 @@ static int traverse_sessionid(struct db_record *db, void *state)
if (!db) {
d_printf("sessionid.tdb not initialised\n");
} else {
- d_printf("\nSamba version %s\n",SAMBA_VERSION_STRING);
+ d_printf("\nSamba version %s\n",samba_version_string());
d_printf("PID Username Group Machine \n");
d_printf("-------------------------------------------------------------------\n");