Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git] / workbench / libs / security / secGetPktDefProtection.c
blob7c395c219c3e4e20fbd6c5b02828ae6d4c2d2f10
1 /*
2 Copyright © 2002-2007, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <stdio.h>
8 #include "security_intern.h"
10 #define DEBUG 1
11 #include <aros/debug.h>
13 /*****************************************************************************
15 NAME */
16 AROS_LH1(LONG, secGetPktDefProtection,
18 /* SYNOPSIS */
19 /* (pkt) */
20 AROS_LHA(struct DosPacket *, pkt, A1),
22 /* LOCATION */
23 struct Library *, SecurityBase, 35, Security)
25 /* FUNCTION
27 INPUTS
30 RESULT
33 NOTES
36 EXAMPLE
38 BUGS
40 SEE ALSO
43 INTERNALS
45 HISTORY
47 *****************************************************************************/
49 AROS_LIBFUNC_INIT
51 D(bug( DEBUG_NAME_STR "secGetPktDefProtection()\n") );;
53 return NULL;
55 AROS_LIBFUNC_EXIT
57 } /* secGetPktDefProtection */