diff options
author | Volker Lendecke <vl@samba.org> | 2008-04-20 14:07:38 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-04-20 14:08:17 +0200 |
commit | cee268b5cb32076cc09cbfa429a0e2553ba5be4d (patch) | |
tree | fb25ebccbcfc97139f2159e8dc22cae8a8b8e0ad | |
parent | b9cc05506273e5ce3398a5912b9c9e5989717480 (diff) | |
download | samba-cee268b5cb32076cc09cbfa429a0e2553ba5be4d.tar.gz samba-cee268b5cb32076cc09cbfa429a0e2553ba5be4d.tar.bz2 samba-cee268b5cb32076cc09cbfa429a0e2553ba5be4d.zip |
Make convert_samr_dispinfo_to_NET_DISPLAY() static
(This used to be commit a30a26d471a572167ee13bf10be1a275a6592851)
-rw-r--r-- | source3/lib/netapi/user.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/lib/netapi/user.c b/source3/lib/netapi/user.c index 05a051067a..f2dc785a36 100644 --- a/source3/lib/netapi/user.c +++ b/source3/lib/netapi/user.c @@ -845,11 +845,11 @@ static WERROR convert_samr_dispinfo_to_NET_DISPLAY_GROUP(TALLOC_CTX *mem_ctx, /**************************************************************** ****************************************************************/ -WERROR convert_samr_dispinfo_to_NET_DISPLAY(TALLOC_CTX *mem_ctx, - union samr_DispInfo *info, - uint32_t level, - uint32_t *entries_read, - void **buffer) +static WERROR convert_samr_dispinfo_to_NET_DISPLAY(TALLOC_CTX *mem_ctx, + union samr_DispInfo *info, + uint32_t level, + uint32_t *entries_read, + void **buffer) { switch (level) { case 1: |