summaryrefslogtreecommitdiff
path: root/source3/modules
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2003-04-21 01:56:13 +0000
committerJelmer Vernooij <jelmer@samba.org>2003-04-21 01:56:13 +0000
commitdcee9b58b95e7dd199e22495b5b83ab745e8fb1d (patch)
treedbd9d56039663c6b17b6d33eb66e00cbda780351 /source3/modules
parentea67a9e0566bfa6659e5911dbdfa1054d4ee0c77 (diff)
downloadsamba-dcee9b58b95e7dd199e22495b5b83ab745e8fb1d.tar.gz
samba-dcee9b58b95e7dd199e22495b5b83ab745e8fb1d.tar.bz2
samba-dcee9b58b95e7dd199e22495b5b83ab745e8fb1d.zip
Default to "passdb.xml" as default output filename instead of "-"
(This used to be commit aa4c11370bb09bfd20d02da509ebdd6dc475439d)
Diffstat (limited to 'source3/modules')
-rw-r--r--source3/modules/xml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/xml.c b/source3/modules/xml.c
index 1a4aeeeac0..d018175d38 100644
--- a/source3/modules/xml.c
+++ b/source3/modules/xml.c
@@ -554,7 +554,7 @@ NTSTATUS xmlsam_init(PDB_CONTEXT * pdb_context, PDB_METHODS ** pdb_method,
data = talloc(pdb_context->mem_ctx, sizeof(pdb_xml));
data->location =
- (location ? talloc_strdup(pdb_context->mem_ctx, location) : "-");
+ (location ? talloc_strdup(pdb_context->mem_ctx, location) : "passdb.xml");
data->pwent = NULL;
data->written = 0;
(*pdb_method)->private_data = data;