summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/include
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-06-05 01:30:27 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:28 -0500
commitb553acce4b426e1a2e4fda3a9acbfbf41003154a (patch)
tree9c05f29287df1de27571138dcd678de484803cea /source4/lib/ldb/include
parente06d8e94a9eeb87c0c2ee8f22375c1ab6d18a3de (diff)
downloadsamba-b553acce4b426e1a2e4fda3a9acbfbf41003154a.tar.gz
samba-b553acce4b426e1a2e4fda3a9acbfbf41003154a.tar.bz2
samba-b553acce4b426e1a2e4fda3a9acbfbf41003154a.zip
r1018: fix a const and unsigned int problem in ldb
(This used to be commit 3d52ca93731ad67c14ac42f627e3feb1a964b29a)
Diffstat (limited to 'source4/lib/ldb/include')
-rw-r--r--source4/lib/ldb/include/ldb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/include/ldb.h b/source4/lib/ldb/include/ldb.h
index 448d5607a8..241f186991 100644
--- a/source4/lib/ldb/include/ldb.h
+++ b/source4/lib/ldb/include/ldb.h
@@ -300,7 +300,7 @@ int ldb_msg_find_int(const struct ldb_message *msg,
int default_value);
unsigned int ldb_msg_find_uint(const struct ldb_message *msg,
const char *attr_name,
- int default_value);
+ unsigned int default_value);
double ldb_msg_find_double(const struct ldb_message *msg,
const char *attr_name,
double default_value);