Luciano Bello @ 2006-01-11 (Wednesday), 12:12 (-0300)
> The davfs2 new version (0.2.7-1) have following changelog:
>    * Better interoperation with MS IIS.
> 
> Would you like to test it?

I'm afraid it still does not work for me with 0.2.7-1. 

This is what I get now:

"
leka# mount /storegate 
leka# touch /storegate/touchme
leka# echo filecontent > /storegate/echome
zsh: Input/output error: /storegate/echome
leka# umount /storegate 
leka# 
"

I can't remeber if that's the exact same error message which I got the
last time I tried or if it changed. Looks like I didn't report it well
enough in my port on sourceforge.

To better realize exactly where it fails, I wrote this simple C program:

"
#include <stdio.h>

void main()
{
        FILE *f;
        int i;

        if(!(f = fopen("/storegate/testfile", "w")))
                perror("fopen()");
        else
        {
                i = fprintf(f, "Hello storgate\n");

                printf("Wrote %d characters\n", i);
                if(fclose(f))
                        perror("fclose()");
        }
}
"

Which produces error on the open() call:

"
leka# /tmp/test             
fopen(): Input/output error
leka#  
"

I'll try to generate a usable ethereal log this time, and post it
directly to sourceforge.

> Thanks a lot for all your contributions.

Thanks heaps for maintaining!
--
/Martin


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to