Nogs:
You can do radical surgery to your find command and rcp each file, and check the exit code. I think you'd lose efficiency doing this sort of thing, but ....
for file in `find . -type f -mtime -1 -print`
do
rcp $file $SITE:$REMDIR
if [ "$?" eq - ] ; then
.
.
done
Regards,
Ed