diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2011-06-20 18:40:32 +0930 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2011-06-20 11:18:35 +0200 |
commit | a4993f647cfc5b8e0cf4405cc1d8815770837310 (patch) | |
tree | 13cefa491e51a3b757743e1d44772fdaffc205b6 /source3/printing | |
parent | 58f7cda1bc6b7767c318a038bdb686f4e59e2e64 (diff) | |
download | samba-a4993f647cfc5b8e0cf4405cc1d8815770837310.tar.gz samba-a4993f647cfc5b8e0cf4405cc1d8815770837310.tar.bz2 samba-a4993f647cfc5b8e0cf4405cc1d8815770837310.zip |
ldb: replace 'struct TDB_DATA' with 'TDB_DATA'
The typedef is TDB2 compatible, the struct isn't.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/printing_db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/printing_db.c b/source3/printing/printing_db.c index b836c2145b..e442551b83 100644 --- a/source3/printing/printing_db.c +++ b/source3/printing/printing_db.c @@ -160,7 +160,7 @@ void close_all_print_db(void) messages. data needs freeing on exit. ****************************************************************************/ -struct TDB_DATA get_printer_notify_pid_list(struct tdb_context *tdb, const char *printer_name, bool cleanlist) +TDB_DATA get_printer_notify_pid_list(struct tdb_context *tdb, const char *printer_name, bool cleanlist) { TDB_DATA data; size_t i; |