diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-04-21 01:56:13 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-04-21 01:56:13 +0000 |
commit | dcee9b58b95e7dd199e22495b5b83ab745e8fb1d (patch) | |
tree | dbd9d56039663c6b17b6d33eb66e00cbda780351 /source3/modules | |
parent | ea67a9e0566bfa6659e5911dbdfa1054d4ee0c77 (diff) | |
download | samba-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.c | 2 |
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; |