This file is indexed.

/usr/src/openswan-2.6.38/packaging/utils/prepcand is in openswan-modules-dkms 1:2.6.38-1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#! /bin/sh
# prepcand m.nn
# prepare candidate for building, must be done in top working dir

PATH=/bin:/usr/bin
export PATH
umask 022

case "$#:$1" in
1:*.*)	;;
*)	echo "Usage: $0 release" >&2 ; exit	;;
esac

rel="$1"
tag="PRE`echo $rel | tr '.' '_'`"

# update from snapshot form to candidate/release form, if necessary
if egrep -q -e '^---$' README
then
	sed '1,/^---$/d' README | sed '1s/This is release xxx of Linux FreeS\/WAN/This is release '$rel' of Linux FreeS\/WAN/' > README.$$
	mv README.$$ README
	cvs -Q commit -m "update for candidates of release $rel" README
fi

if sed -n 1p CHANGES | egrep -q 'since last release'
then
	sed '1s/since last release/in '$rel'/' CHANGES >CHANGES.$$
	mv CHANGES.$$ CHANGES
	cvs -Q commit -m "update for candidates of release $rel" CHANGES
fi

echo "IPSECVERSION=$rel" >Makefile.ver
cvs -Q commit -m "update for candidate of release $rel" Makefile