summaryrefslogtreecommitdiff
path: root/source3/lib/version.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-08-20 17:13:38 +0000
committerGerald Carter <jerry@samba.org>2003-08-20 17:13:38 +0000
commit8bfe26b62db2e671b143d93a5428f8fb64a9df05 (patch)
tree37d3f77a451087d3f7491a70bd076e38f977da5a /source3/lib/version.c
parent0722fc16a445a47ef3aaa60e7a0e5324bfcf55eb (diff)
downloadsamba-8bfe26b62db2e671b143d93a5428f8fb64a9df05.tar.gz
samba-8bfe26b62db2e671b143d93a5428f8fb64a9df05.tar.bz2
samba-8bfe26b62db2e671b143d93a5428f8fb64a9df05.zip
metze's autogenerate patch for version.h
(This used to be commit ae452e51b02672a56adf18aa7a7e365eeaba9272)
Diffstat (limited to 'source3/lib/version.c')
-rw-r--r--source3/lib/version.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/source3/lib/version.c b/source3/lib/version.c
new file mode 100644
index 0000000000..99f836c2d5
--- /dev/null
+++ b/source3/lib/version.c
@@ -0,0 +1,42 @@
+/*
+ Unix SMB/CIFS implementation.
+ Samba Version functions
+
+ Copyright (C) Stefan Metzmacher 2003
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+#include "includes.h"
+
+const char *samba_version_string(void)
+{
+#ifndef SAMBA_VERSION_VENDOR_SUFFIX
+ return SAMBA_VERSION_OFFICIAL_STRING;
+#else
+ static fstring samba_version;
+ static BOOL init_samba_version;
+
+ if (init_samba_version)
+ return samba_version;
+
+ snprintf(samba_version,sizeof(samba_version),"%s-%s",
+ SAMBA_VERSION_OFFICIAL_STRING,
+ SAMBA_VERSION_VENDOR_SUFFIX);
+
+ init_samba_version = True;
+ return samba_version;
+#endif
+}