Displaying 5 results from an estimated 5 matches for "xdr_getquota_arg".
Did you mean:
xdr_getquota_args
2008 Jun 18
3
v1.1.rc11 released
http://dovecot.org/releases/1.1/rc/dovecot-1.1.rc11.tar.gz
http://dovecot.org/releases/1.1/rc/dovecot-1.1.rc11.tar.gz.sig
This is the final v1.1 RC. Tomorrow I'll change only the version number,
update the documentation and call it v1.1.0. But please test this anyway
to make sure I didn't happen to break anything since rc10 :)
- dovecot-uidlist is now recreated if it results in file
2008 Jun 18
3
v1.1.rc11 released
http://dovecot.org/releases/1.1/rc/dovecot-1.1.rc11.tar.gz
http://dovecot.org/releases/1.1/rc/dovecot-1.1.rc11.tar.gz.sig
This is the final v1.1 RC. Tomorrow I'll change only the version number,
update the documentation and call it v1.1.0. But please test this anyway
to make sure I didn't happen to break anything since rc10 :)
- dovecot-uidlist is now recreated if it results in file
2008 Jun 11
0
Dovecot 1.1 rc9 compilation warnings
...ackend_squat_expunge_finish':
> fts-backend-squat.c:195: warning: unused parameter `_backend'
> fts-backend-squat.c:196: warning: unused parameter `box'
> fts-backend-squat.c:196: warning: unused parameter `committed'
Solaris 8/10 and SLES 9
> rquota_xdr.c: In function `xdr_getquota_args':
> rquota_xdr.c:17: warning: unused variable `buf'
> rquota_xdr.c: In function `xdr_rquota':
> rquota_xdr.c:36: warning: unused variable `buf'
> rquota_xdr.c: In function `xdr_gqr_status':
> rquota_xdr.c:71: warning: unused variable `buf'
> rquota_xdr.c:...
2002 Dec 17
2
samba domain controller + Windows 2000
I have a Linux machine running Samba 2.2.1a (dated, I know) as a domain controller for Windows clients (NT and 2000). I can add NT machines to the domain just fine; I use useradd and smbpasswd to generate the appropriate entries, and it works fine. I tried doing the same thing with a couple of 2000 (SP3) machines, and although I'm allowed to join the domain, after rebooting and trying to log
2006 Feb 03
0
rquotad (NFS) quota plugin
...ET;
+ rhost.sin_port = 0;
+
+ clnt = clntudp_create(&rhost, RQUOTAPROG, RQUOTAVERS, tout, &sock);
+ if (!clnt)
+ return rpc_createerr.cf_stat;
+
+ clnt->cl_auth = authunix_create_default();
+ tout.tv_sec = 25;
+ tout.tv_usec = 0;
+ cstat = clnt_call(clnt, RQUOTAPROC_GETQUOTA, xdr_getquota_args,
+ qargs, xdr_getquota_rslt, qres, tout);
+ clnt_destroy(clnt);
+ return cstat;
+ }
+
+ static void rquotad_quota_root_error_alloc(struct rquotad_quota_root *root,
+ const char *errmsg, ...)
+ {
+ struct rquotad_quota *quota = (struct rquotad_quota *)root->root.quota;
+ va_lis...