summaryrefslogtreecommitdiff
path: root/source3/lib/version.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib/version.c')
-rw-r--r--source3/lib/version.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/lib/version.c b/source3/lib/version.c
index 38c4f45ac6..dff45f6259 100644
--- a/source3/lib/version.c
+++ b/source3/lib/version.c
@@ -84,7 +84,10 @@ void samba_extended_info_version(struct smb_extended_info *extended_info)
/* FIXME: samba_gitcommitdate should contain the git commit date. */
unix_to_nt_time(&extended_info->samba_gitcommitdate, time(NULL));
+ memset(extended_info->samba_version_string, 0,
+ sizeof(extended_info->samba_version_string));
+
snprintf (extended_info->samba_version_string,
- SAMBA_EXTENDED_INFO_VERSION_STRING_LENGTH,
+ sizeof(extended_info->samba_version_string),
"%s", samba_version_string());
}