https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=239552

--- Comment #3 from Sean Eric Fagan <s...@freebsd.org> ---
I don't have a way to reproduce this; anyone who can, it would be useful to
find out if both client and server are using the same RPC version for rquota.

For Version 1, it should be using the structure

struct getquota_args {
        string gqa_pathp<RQ_PATHLEN>;   /* path to filesystem of interest */
        int gqa_uid;                    /* Inquire about quota for uid */
};

to request a quota; for Version 2, it should be usingstruct ext_getquota_args {
        string gqa_pathp<RQ_PATHLEN>;   /* path to filesystem of interest */
        int gqa_type;                   /* Type of quota info is needed about
*/
        int gqa_id;                     /* Inquire about quota for id */
};

Note that USRQUOTA is 0, which matches the behaviour from the comments above. 
(But it could be something else.)

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"

Reply via email to