s3: Remove unused cli_get_nt_error
authorVolker Lendecke <vl@samba.org>
Mon, 23 May 2011 10:26:03 +0000 (12:26 +0200)
committerVolker Lendecke <vlendec@samba.org>
Mon, 23 May 2011 14:54:21 +0000 (16:54 +0200)
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Mon May 23 16:54:21 CEST 2011 on sn-devel-104

source3/libsmb/clierror.c
source3/libsmb/proto.h

index e027624de7a5a04bfd79536862b189595945f622..d5ac8937ed6ea2d0af42756070b551184e7890e1 100644 (file)
@@ -323,23 +323,6 @@ bool cli_is_dos_error(struct cli_state *cli)
         return cli_is_error(cli) && !(flgs2 & FLAGS2_32_BIT_ERROR_CODES);
 }
 
-/* Return the last error always as an NTSTATUS. */
-
-NTSTATUS cli_get_nt_error(struct cli_state *cli)
-{
-       if (cli_is_nt_error(cli)) {
-               return cli_nt_error(cli);
-       } else if (cli_is_dos_error(cli)) {
-               uint32 ecode;
-               uint8 eclass;
-               cli_dos_error(cli, &eclass, &ecode);
-               return dos_to_ntstatus(eclass, ecode);
-       } else {
-               /* Something went wrong, we don't know what. */
-               return NT_STATUS_UNSUCCESSFUL;
-       }
-}
-
 bool cli_state_is_connected(struct cli_state *cli)
 {
        if (cli == NULL) {
index c7e3bc7bcd641458a68bfb03e2ec62518cc8d319..213b81129eb085fcfc3c2617ab76110f90bcf004 100644 (file)
@@ -190,7 +190,6 @@ int cli_errno(struct cli_state *cli);
 bool cli_is_error(struct cli_state *cli);
 bool cli_is_nt_error(struct cli_state *cli);
 bool cli_is_dos_error(struct cli_state *cli);
-NTSTATUS cli_get_nt_error(struct cli_state *cli);
 bool cli_state_is_connected(struct cli_state *cli);
 
 /* The following definitions come from libsmb/clifile.c  */