summaryrefslogtreecommitdiff
path: root/source3/utils/net_ads.c
diff options
context:
space:
mode:
authorJim McDonough <jmcd@samba.org>2002-04-10 13:29:23 +0000
committerJim McDonough <jmcd@samba.org>2002-04-10 13:29:23 +0000
commit6e0b34fb3c0598e7f242e9995b421212a88888f8 (patch)
treed3d7bbab7308cd0acb89e17ed8de7ab37c1c612d /source3/utils/net_ads.c
parent85a7948337e81f7ff84bc7aa50596aef52f0e36c (diff)
downloadsamba-6e0b34fb3c0598e7f242e9995b421212a88888f8.tar.gz
samba-6e0b34fb3c0598e7f242e9995b421212a88888f8.tar.bz2
samba-6e0b34fb3c0598e7f242e9995b421212a88888f8.zip
Rename of ads_do_search_all2() to ads_do_search_all() and removal of
server sort controls. Also put option externs in the net.h include. (This used to be commit b69f11170c2b27016c44a98bc603d1c94ad7d4c2)
Diffstat (limited to 'source3/utils/net_ads.c')
-rw-r--r--source3/utils/net_ads.c34
1 files changed, 11 insertions, 23 deletions
diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c
index 922e1331cd..68fa89ea35 100644
--- a/source3/utils/net_ads.c
+++ b/source3/utils/net_ads.c
@@ -21,6 +21,7 @@
*/
#include "includes.h"
+#include "../utils/net.h"
#ifdef HAVE_ADS
@@ -54,7 +55,6 @@ int net_ads_usage(int argc, const char **argv)
static int net_ads_info(int argc, const char **argv)
{
ADS_STRUCT *ads;
- extern char *opt_host;
ads = ads_init(NULL, opt_host, NULL, NULL);
ads_connect(ads);
@@ -80,10 +80,6 @@ static ADS_STRUCT *ads_startup(void)
ADS_STATUS status;
BOOL need_password = False;
BOOL second_time = False;
- extern char *opt_password;
- extern char *opt_user_name;
- extern char *opt_host;
- extern BOOL opt_user_specified;
ads = ads_init(NULL, opt_host, NULL, NULL);
@@ -173,7 +169,6 @@ static int ads_user_add(int argc, const char **argv)
ADS_STATUS status;
void *res=NULL;
int rc = -1;
- extern char *opt_comment;
if (argc < 1) return net_ads_user_usage(argc, argv);
@@ -291,7 +286,6 @@ int net_ads_user(int argc, const char **argv)
ADS_STATUS rc;
const char *shortattrs[] = {"sAMAccountName", NULL};
const char *longattrs[] = {"sAMAccountName", "description", NULL};
- extern int opt_long_list_entries;
char *disp_fields[2] = {NULL, NULL};
if (argc == 0) {
@@ -301,13 +295,12 @@ int net_ads_user(int argc, const char **argv)
d_printf("\nUser name Comment"\
"\n-----------------------------\n");
- rc = ads_do_search_all2(ads, ads->bind_path,
- LDAP_SCOPE_SUBTREE,
- "(objectclass=user)",
- opt_long_list_entries ?
- longattrs : shortattrs,
- "sAMAccountName", usergrp_display,
- disp_fields);
+ rc = ads_do_search_all_fn(ads, ads->bind_path,
+ LDAP_SCOPE_SUBTREE,
+ "(objectclass=user)",
+ opt_long_list_entries ? longattrs :
+ shortattrs, usergrp_display,
+ disp_fields);
ads_destroy(&ads);
return 0;
}
@@ -321,7 +314,6 @@ static int net_ads_group(int argc, const char **argv)
ADS_STATUS rc;
const char *shortattrs[] = {"sAMAccountName", NULL};
const char *longattrs[] = {"sAMAccountName", "description", NULL};
- extern int opt_long_list_entries;
char *disp_fields[2] = {NULL, NULL};
if (!(ads = ads_startup())) return -1;
@@ -329,10 +321,10 @@ static int net_ads_group(int argc, const char **argv)
if (opt_long_list_entries)
d_printf("\nGroup name Comment"\
"\n-----------------------------\n");
- rc = ads_do_search_all2(ads, ads->bind_path, LDAP_SCOPE_SUBTREE,
- "(objectclass=group)", opt_long_list_entries ?
- longattrs : shortattrs, "sAMAccountName",
- usergrp_display, disp_fields);
+ rc = ads_do_search_all_fn(ads, ads->bind_path, LDAP_SCOPE_SUBTREE,
+ "(objectclass=group)", opt_long_list_entries
+ ? longattrs : shortattrs, usergrp_display,
+ disp_fields);
ads_destroy(&ads);
return 0;
@@ -368,8 +360,6 @@ static int net_ads_leave(int argc, const char **argv)
ADS_STRUCT *ads = NULL;
ADS_STATUS rc;
extern pstring global_myname;
- extern char *opt_user_name;
- extern char *opt_password;
if (!secrets_init()) {
DEBUG(1,("Failed to initialise secrets database\n"));
@@ -640,8 +630,6 @@ static int net_ads_printer(int argc, const char **argv)
static int net_ads_password(int argc, const char **argv)
{
ADS_STRUCT *ads;
- extern char *opt_user_name;
- extern char *opt_password;
char *auth_principal = opt_user_name;
char *auth_password = opt_password;
char *realm = NULL;