summaryrefslogtreecommitdiff
path: root/source3/utils/net_lookup.c
diff options
context:
space:
mode:
authorKai Blin <kai@samba.org>2009-07-30 12:10:56 +0200
committerKai Blin <kai@samba.org>2009-07-30 12:10:56 +0200
commita9a52f3b62d6bf6d87840232fcbb8cdcf5d8b3c4 (patch)
treed310992d62a0d5682cadad754aff1812f8aec68e /source3/utils/net_lookup.c
parent3af57c66b35a13b94fe090ea3f46f2f2ad22b077 (diff)
downloadsamba-a9a52f3b62d6bf6d87840232fcbb8cdcf5d8b3c4.tar.gz
samba-a9a52f3b62d6bf6d87840232fcbb8cdcf5d8b3c4.tar.bz2
samba-a9a52f3b62d6bf6d87840232fcbb8cdcf5d8b3c4.zip
s3 net: i18n support for net lookup
Diffstat (limited to 'source3/utils/net_lookup.c')
-rw-r--r--source3/utils/net_lookup.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/source3/utils/net_lookup.c b/source3/utils/net_lookup.c
index e770e3299f..21b2c4329e 100644
--- a/source3/utils/net_lookup.c
+++ b/source3/utils/net_lookup.c
@@ -21,7 +21,7 @@
int net_lookup_usage(struct net_context *c, int argc, const char **argv)
{
- d_printf(
+ d_printf(_(
" net lookup [host] HOSTNAME[#<type>]\n\tgives IP for a hostname\n\n"
" net lookup ldap [domain]\n\tgives IP of domain's ldap server\n\n"
" net lookup kdc [realm]\n\tgives IP of realm's kerberos KDC\n\n"
@@ -31,7 +31,7 @@ int net_lookup_usage(struct net_context *c, int argc, const char **argv)
" net lookup name [name]\n\tLookup name's sid and type\n\n"
" net lookup sid [sid]\n\tGive sid's name and type\n\n"
" net lookup dsgetdcname [name] [flags] [sitename]\n\n"
-);
+));
return -1;
}
@@ -109,7 +109,7 @@ static int net_lookup_ldap(struct net_context *c, int argc, const char **argv)
sitename = sitename_fetch(domain);
if ( (ctx = talloc_init("net_lookup_ldap")) == NULL ) {
- d_fprintf(stderr, "net_lookup_ldap: talloc_init() failed!\n");
+ d_fprintf(stderr,_("net_lookup_ldap: talloc_init() failed!\n"));
SAFE_FREE(sitename);
return -1;
}
@@ -322,13 +322,13 @@ static int net_lookup_name(struct net_context *c, int argc, const char **argv)
enum lsa_SidType type;
if (argc != 1) {
- d_printf("usage: net lookup name <name>\n");
+ d_printf(_("usage: net lookup name <name>\n"));
return -1;
}
if (!lookup_name(talloc_tos(), argv[0], LOOKUP_NAME_ALL,
&dom, &name, &sid, &type)) {
- d_printf("Could not lookup name %s\n", argv[0]);
+ d_printf(_("Could not lookup name %s\n"), argv[0]);
return -1;
}
@@ -344,18 +344,18 @@ static int net_lookup_sid(struct net_context *c, int argc, const char **argv)
enum lsa_SidType type;
if (argc != 1) {
- d_printf("usage: net lookup sid <sid>\n");
+ d_printf(_("usage: net lookup sid <sid>\n"));
return -1;
}
if (!string_to_sid(&sid, argv[0])) {
- d_printf("Could not convert %s to SID\n", argv[0]);
+ d_printf(_("Could not convert %s to SID\n"), argv[0]);
return -1;
}
if (!lookup_sid(talloc_tos(), &sid,
&dom, &name, &type)) {
- d_printf("Could not lookup name %s\n", argv[0]);
+ d_printf(_("Could not lookup name %s\n"), argv[0]);
return -1;
}
@@ -375,8 +375,8 @@ static int net_lookup_dsgetdcname(struct net_context *c, int argc, const char **
char *s = NULL;
if (argc < 1 || argc > 3) {
- d_printf("usage: net lookup dsgetdcname "
- "<name> <flags> <sitename>\n");
+ d_printf(_("usage: net lookup dsgetdcname "
+ "<name> <flags> <sitename>\n"));
return -1;
}
@@ -401,7 +401,7 @@ static int net_lookup_dsgetdcname(struct net_context *c, int argc, const char **
status = dsgetdcname(mem_ctx, NULL, domain_name, NULL, site_name,
flags, &info);
if (!NT_STATUS_IS_OK(status)) {
- d_printf("failed with: %s\n", nt_errstr(status));
+ d_printf(_("failed with: %s\n"), nt_errstr(status));
TALLOC_FREE(mem_ctx);
return -1;
}
@@ -434,7 +434,7 @@ int net_lookup(struct net_context *c, int argc, const char **argv)
};
if (argc < 1) {
- d_printf("\nUsage: \n");
+ d_printf(_("\nUsage: \n"));
return net_lookup_usage(c, argc, argv);
}
for (i=0; table[i].funcname; i++) {