+---------- On Feb 22, Jim Wilcoxson said:
> set fd [open xyz w]
> puts $fd "abcdefg"
> close $fd
>
> set fd [open xyz r+]
> seek $fd 4
> puts -nonewline $fd "x"

What happens if you put "flush $fd" right here, after the puts and
before the ns_ftruncate?

> ns_ftruncate $fd 3
> close $fd
> return

Reply via email to