diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-04-02 18:56:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:49:45 -0500 |
commit | 769efdf048d80c4081487d555649de0f31738dd1 (patch) | |
tree | 538aa4fc93b57c463be8a87345bffed8aadc3a85 /source4/lib/tdb/common/open.c | |
parent | 3655b4ba757a1db84063907ba9a2c157aef9bdbb (diff) | |
download | samba-769efdf048d80c4081487d555649de0f31738dd1.tar.gz samba-769efdf048d80c4081487d555649de0f31738dd1.tar.bz2 samba-769efdf048d80c4081487d555649de0f31738dd1.zip |
r22041: merge trivial changes from samba3
metze
(This used to be commit 902a76ca705f07c61f86a9ef1346583ba9d3157d)
Diffstat (limited to 'source4/lib/tdb/common/open.c')
-rw-r--r-- | source4/lib/tdb/common/open.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/tdb/common/open.c b/source4/lib/tdb/common/open.c index 47e3258c09..c7fd3f6656 100644 --- a/source4/lib/tdb/common/open.c +++ b/source4/lib/tdb/common/open.c @@ -372,9 +372,9 @@ int tdb_close(struct tdb_context *tdb) /* register a loging function */ void tdb_set_logging_function(struct tdb_context *tdb, - const struct tdb_logging_context *log) + const struct tdb_logging_context *log_ctx) { - tdb->log = *log; + tdb->log = *log_ctx; } void *tdb_get_logging_private(struct tdb_context *tdb) |