summaryrefslogtreecommitdiff
path: root/source3/utils
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-03-15 12:55:17 +0100
committerGünther Deschner <gd@samba.org>2008-03-15 12:56:09 +0100
commit0bdba8d59abf3de7919f77073ab3534cab69995a (patch)
tree1ca8ad8e7feef3bc8955ea55658122e3e3f00c9a /source3/utils
parent6b2da4d2f4a576038c272c6521d7c160949c6740 (diff)
downloadsamba-0bdba8d59abf3de7919f77073ab3534cab69995a.tar.gz
samba-0bdba8d59abf3de7919f77073ab3534cab69995a.tar.bz2
samba-0bdba8d59abf3de7919f77073ab3534cab69995a.zip
Fix typo.
Guenther (This used to be commit e12721f73db72b99aa0e4be35c51aa8636eb3f59)
Diffstat (limited to 'source3/utils')
-rw-r--r--source3/utils/net_rpc_join.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_rpc_join.c b/source3/utils/net_rpc_join.c
index 8259ec46e6..45c0fe5097 100644
--- a/source3/utils/net_rpc_join.c
+++ b/source3/utils/net_rpc_join.c
@@ -485,7 +485,7 @@ int net_rpc_testjoin(int argc, const char **argv)
nt_status = net_rpc_join_ok(domain, NULL, NULL);
if (!NT_STATUS_IS_OK(nt_status)) {
fprintf(stderr,"Join to domain '%s' is not valid: %s\n",
- nt_errstr(nt_status), domain);
+ domain, nt_errstr(nt_status));
free(domain);
return -1;
}