diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-04-21 01:55:37 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-04-21 01:55:37 +0000 |
commit | fd8d17393d90f756ddbbbec02be10ee3fb673e76 (patch) | |
tree | f5d0a5547ca5ea546fcfc477769353900ec20198 /source3 | |
parent | 858137d0dd8672f25e4bfe21ce79ff280bd2457b (diff) | |
download | samba-fd8d17393d90f756ddbbbec02be10ee3fb673e76.tar.gz samba-fd8d17393d90f756ddbbbec02be10ee3fb673e76.tar.bz2 samba-fd8d17393d90f756ddbbbec02be10ee3fb673e76.zip |
Default to "passdb.xml" as default output filename instead of "-"
(This used to be commit dfbd2a2e7a5f0f2713bc48daa24d43b07f187d14)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/passdb/pdb_xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/pdb_xml.c b/source3/passdb/pdb_xml.c index 53285afd24..ae3199e3a4 100644 --- a/source3/passdb/pdb_xml.c +++ b/source3/passdb/pdb_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; |