1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/lib/torture
Stefan Metzmacher 183c379fe5 s4:lib/tevent: rename structs
list=""
list="$list event_context:tevent_context"
list="$list fd_event:tevent_fd"
list="$list timed_event:tevent_timer"

for s in $list; do
	o=`echo $s | cut -d ':' -f1`
	n=`echo $s | cut -d ':' -f2`
	r=`git grep "struct $o" |cut -d ':' -f1 |sort -u`
	files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4`
	for f in $files; do
		cat $f | sed -e "s/struct $o/struct $n/g" > $f.tmp
		mv $f.tmp $f
	done
done

metze
2008-12-29 20:46:40 +01:00
..
config.mk s4:torture: fix the build with auto dependencies 2008-11-16 16:21:25 +01:00
subunit.c Remove unused init function in subunit code. 2008-11-16 01:36:17 +01:00
torture.c s4:lib/tevent: rename structs 2008-12-29 20:46:40 +01:00
torture.h s4:lib/tevent: rename structs 2008-12-29 20:46:40 +01:00
torture.pc.in Move libtorture to top-level. 2008-11-16 00:55:35 +01:00