summaryrefslogtreecommitdiff
path: root/source3/smbd/ipc.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1997-10-09 16:14:53 +0000
committerLuke Leighton <lkcl@samba.org>1997-10-09 16:14:53 +0000
commit3dd03e4bb7af903eae162648bbf51da04fa68200 (patch)
treeadc098e5cea3a07fbb2a1438879adb3aa3437e30 /source3/smbd/ipc.c
parent7d82c240e27e921a859441669a15a095a2e5bff5 (diff)
downloadsamba-3dd03e4bb7af903eae162648bbf51da04fa68200.tar.gz
samba-3dd03e4bb7af903eae162648bbf51da04fa68200.tar.bz2
samba-3dd03e4bb7af903eae162648bbf51da04fa68200.zip
added #ifdef NTDOMAIN. added call to api_ntLsarpc instead of api_Lsarpc
in ipc.c iff NTDOMAIN is defined. (This used to be commit 7bc4c4c27bf18ce3f632d230dc919ea341b5abb0)
Diffstat (limited to 'source3/smbd/ipc.c')
-rw-r--r--source3/smbd/ipc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/smbd/ipc.c b/source3/smbd/ipc.c
index 6da9562c9f..28cdb22889 100644
--- a/source3/smbd/ipc.c
+++ b/source3/smbd/ipc.c
@@ -2763,7 +2763,11 @@ struct
} api_fd_commands [] =
{
{ "SetNmdPpHndState", "lsarpc", 1, api_LsarpcSNPHS },
+#ifdef NTDOMAIN
+ { "TransactNmPipe", "lsarpc", 0x26, api_ntLsarpcTNP },
+#else
{ "TransactNmPipe", "lsarpc", 0x26, api_LsarpcTNP },
+#endif
{ NULL, NULL, -1, (BOOL (*)())api_Unsupported }
};