diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-11-12 18:06:20 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-11-12 17:42:14 +0000 |
commit | ed22f13e7ead1b1ed2fd9dde51a479b9cfaf67aa (patch) | |
tree | e8b53e68924e34450acec4ce4fdff818774b404d /source3/smbd | |
parent | 9ebb55d1cb1280a5b8a4d82ec35568c034898e41 (diff) | |
download | samba-ed22f13e7ead1b1ed2fd9dde51a479b9cfaf67aa.tar.gz samba-ed22f13e7ead1b1ed2fd9dde51a479b9cfaf67aa.tar.bz2 samba-ed22f13e7ead1b1ed2fd9dde51a479b9cfaf67aa.zip |
s3: Rename GIT_COMMIT_{TIME,DATE} to COMMIT_{TIME,DATE}.
This avoids some special casing in the waf code.
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/trans2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index 7ca5f5057a..30794e009e 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -2892,8 +2892,8 @@ static void samba_extended_info_version(struct smb_extended_info *extended_info) extended_info->samba_subversion |= (SAMBA_VERSION_VENDOR_PATCH & 0xffff); #endif extended_info->samba_gitcommitdate = 0; -#ifdef SAMBA_VERSION_GIT_COMMIT_TIME - unix_to_nt_time(&extended_info->samba_gitcommitdate, SAMBA_VERSION_GIT_COMMIT_TIME); +#ifdef SAMBA_VERSION_COMMIT_TIME + unix_to_nt_time(&extended_info->samba_gitcommitdate, SAMBA_VERSION_COMMIT_TIME); #endif memset(extended_info->samba_version_string, 0, |