Displaying 7 results from an estimated 7 matches for "xdr_getquota_rslt".
2008 Jun 11
0
Dovecot 1.1 rc9 compilation warnings
...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: In function `xdr_getquota_rslt':
> rquota_xdr.c:88: warning: unused variable `buf'
Ubuntu 8.04
> istream-zlib.c: In function `i_stream_zlib_seek':
> istream-zlib.c:118: warning: implicit declaration of function `gzseek64'
--
--+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+-
Chri...
2008 Jun 22
5
v1.1.1 released
http://dovecot.org/releases/1.1/dovecot-1.1.1.tar.gz
http://dovecot.org/releases/1.1/dovecot-1.1.1.tar.gz.sig
Hopefully this release lives a bit longer than v1.1.0.
- Maildir: When migrating from v1.0 with old format dovecot-uidlist
files, Dovecot may have appended lines to it using the new format and
later broken with "UID larger than next_uid" error.
-------------- next part
2008 Jun 22
5
v1.1.1 released
http://dovecot.org/releases/1.1/dovecot-1.1.1.tar.gz
http://dovecot.org/releases/1.1/dovecot-1.1.1.tar.gz.sig
Hopefully this release lives a bit longer than v1.1.0.
- Maildir: When migrating from v1.0 with old format dovecot-uidlist
files, Dovecot may have appended lines to it using the new format and
later broken with "UID larger than next_uid" error.
-------------- next part
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
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
2006 Feb 03
0
rquotad (NFS) quota plugin
...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_list args;
+ va_start(args, errmsg);...