#!/bin/sh

#############################################################
#
# Copyright (C) 2003 Networks Associates Technology, Inc.
# All Rights Reserved.
#
# This script will run uvscan with the --secure switch in
# addition to any other parameters passed in.
#
#############################################################

uvscan_binary="`dirname $0`/uvscan"
"$uvscan_binary" --secure $@

exit $?
