s4: Exceptions in "provision.py"
[Samba/gebeck_regimport.git] / source4 / lib / ldb / tests / sample_module.c
blobbbe4419b598c0188fc642c917eada5f232fb12cd
1 /*
2 Unix SMB/CIFS implementation.
3 Samba utility functions
4 Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
6 ** NOTE! The following LGPL license applies to the ldb
7 ** library. This does NOT imply that all of Samba is released
8 ** under the LGPL
10 This library is free software; you can redistribute it and/or
11 modify it under the terms of the GNU Lesser General Public
12 License as published by the Free Software Foundation; either
13 version 3 of the License, or (at your option) any later version.
15 This library is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
20 You should have received a copy of the GNU Lesser General Public
21 License along with this library; if not, see <http://www.gnu.org/licenses/>.
24 #include "ldb_module.h"
26 int sample_add(struct ldb_module *mod, struct ldb_request *req)
28 ldb_msg_add_fmt(req->op.add.message, "touchedBy", "sample");
30 return ldb_next_request(mod, req);
33 const struct ldb_module_ops ldb_sample_module_ops = {
34 .name = "sample",
35 .add = sample_add,