summaryrefslogtreecommitdiff
path: root/usr/src/lib/libresolv2/common/dnssafe/surrendr.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/lib/libresolv2/common/dnssafe/surrendr.c')
-rw-r--r--usr/src/lib/libresolv2/common/dnssafe/surrendr.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/usr/src/lib/libresolv2/common/dnssafe/surrendr.c b/usr/src/lib/libresolv2/common/dnssafe/surrendr.c
deleted file mode 100644
index d353ee8de6..0000000000
--- a/usr/src/lib/libresolv2/common/dnssafe/surrendr.c
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Copyright 1999-2002 Sun Microsystems, Inc. All rights reserved.
- * Use is subject to license terms.
- */
-
-#pragma ident "%Z%%M% %I% %E% SMI"
-
-/* Copyright (C) RSA Data Security, Inc. created 1992, 1996. This is an
- unpublished work protected as such under copyright law. This work
- contains proprietary, confidential, and trade secret information of
- RSA Data Security, Inc. Use, disclosure or reproduction without the
- express written authorization of RSA Data Security, Inc. is
- prohibited.
- */
-
-#include "port_before.h"
-#include "global.h"
-#include "algae.h"
-#include "surrendr.h"
-#include "port_after.h"
-
-/* Returns 0, AE_CANCEL.
- */
-int CheckSurrender (surrenderContext)
-A_SURRENDER_CTX *surrenderContext;
-{
- if (surrenderContext == (A_SURRENDER_CTX *)NULL_PTR)
- return (0);
-
- if ((*surrenderContext->Surrender) (surrenderContext->handle))
- return (AE_CANCEL);
- return (0);
-}