diff options
author | Simo Sorce <idra@samba.org> | 2004-09-03 13:42:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:52:36 -0500 |
commit | fef54a21b19b3475adfdcdde636f00a3f6be0fb9 (patch) | |
tree | 9e4a5460a69f892a97dc8f08364beafd7f4dee7f /examples/pdb | |
parent | 0f0b985bdcbe820b3256770a2ac73816070cb62f (diff) | |
download | samba-fef54a21b19b3475adfdcdde636f00a3f6be0fb9.tar.gz samba-fef54a21b19b3475adfdcdde636f00a3f6be0fb9.tar.bz2 samba-fef54a21b19b3475adfdcdde636f00a3f6be0fb9.zip |
r2210: Fix misleading comment found by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>
(This used to be commit 3a88ee4c444c7b953c9f88b19998a5d84fc5e17c)
Diffstat (limited to 'examples/pdb')
-rw-r--r-- | examples/pdb/pdb_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/pdb/pdb_test.c b/examples/pdb/pdb_test.c index e46c621d48..a10d66005f 100644 --- a/examples/pdb/pdb_test.c +++ b/examples/pdb/pdb_test.c @@ -114,8 +114,8 @@ NTSTATUS testsam_init(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const (*pdb_method)->name = "testsam"; - /* Functions your pdb module doesn't provide should be set - * to NULL */ + /* Functions your pdb module doesn't provide should not be + set, make_pdb_methods() already provide suitable defaults for missing functions */ (*pdb_method)->setsampwent = testsam_setsampwent; (*pdb_method)->endsampwent = testsam_endsampwent; |