summaryrefslogtreecommitdiff
path: root/source3/lib/netapi/examples/getdc
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-01-11 15:28:24 +0100
committerGünther Deschner <gd@samba.org>2008-01-11 15:28:24 +0100
commitefcf285e27e3f52cd6188f678d52977584c78972 (patch)
treef7fc2c1169f2acf657eccab8ba1d2edf2094777b /source3/lib/netapi/examples/getdc
parent026b2a8d0a95112dc75e5b909b57580d7d032951 (diff)
downloadsamba-efcf285e27e3f52cd6188f678d52977584c78972.tar.gz
samba-efcf285e27e3f52cd6188f678d52977584c78972.tar.bz2
samba-efcf285e27e3f52cd6188f678d52977584c78972.zip
Fix libnetapi error string callers.
Guenther (This used to be commit 1ad7a0a361edfa5ac738f011db1d6a9db256ac2c)
Diffstat (limited to 'source3/lib/netapi/examples/getdc')
-rw-r--r--source3/lib/netapi/examples/getdc/getdc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/netapi/examples/getdc/getdc.c b/source3/lib/netapi/examples/getdc/getdc.c
index 4f5c5332d5..cdd4d0b3b4 100644
--- a/source3/lib/netapi/examples/getdc/getdc.c
+++ b/source3/lib/netapi/examples/getdc/getdc.c
@@ -46,7 +46,7 @@ int main(int argc, char **argv)
status = NetGetDCName(argv[1], argv[2], &buffer);
if (status != 0) {
- printf("GetDcName failed with: %s\n", libnetapi_errstr(ctx, status));
+ printf("GetDcName failed with: %s\n", libnetapi_errstr(status));
} else {
printf("%s\n", (char *)buffer);
}