masqmail-0.2

view misc/are-options-documented @ 184:b3835b6b834b

Security fix! Correct handling of seteuid() return value See Debian bug #638002, reported by John Lightsey. When possible the (already available) set_euidgid() function is used. Additionally, it is unnecessary to change the identity when writing into an already open file descriptor. This should fix the problem.
author markus schnalke <meillo@marmaro.de>
date Sat, 27 Aug 2011 18:00:40 +0200
parents
children
line source
1 #!/bin/sh
2 #
3 # checks if all recognized options are documented
4 # run from masqmail's repository root dir
5 #
6 # Note: this script is far from perfect, but its development time to
7 # usage value ratio is quite good :-)
9 docs="/tmp/masqmail-opts-docs.$$"
10 code="/tmp/masqmail-opts-code.$$"
12 cat man/masqmail.*.5 | grep -o '^\\fB[^(\\]*\\f.' |
13 egrep -v 'OBSOLETE|http://' | sed 's,^\\fB,,; s,[\\ =].*,,' |
14 sort -u | grep -v '^val$' >"$docs"
16 cat src/conf.c | grep 'lval,.*"' |
17 sed 's,[^"]*",,; s,"\, [0-9]*,",; s,".*,,' | sort -u >"$code"
19 diff -U 0 "$code" "$docs" | grep -v '^@@'
21 rm -f "$docs" "$code"