open function ....
I have written a program which opens a file in create cum append mode for logging data into a file ...
if ((transferInfo->objFd = open(transferInfo->tempFile,
O_WRONLY | O_CREAT | O_APPEND, URDWRMASK))
== -1)
This works fine on Solaris <=9 but I am running this program on Solaris 10. Have there been any changes in this functions usage in Solaris 10. It is opening the file and overwriting the contents of it, not appending. Can anyone have a look at this and suggest if I am not doing anything correctly ?
Thanks

