Fix ipropd_slave: no EDQUOT on WIN32

This commit is contained in:
Nicolas Williams
2016-02-26 11:42:01 -06:00
parent 8343733562
commit f261ed4f58

View File

@@ -181,6 +181,11 @@ ihave(krb5_context context, krb5_auth_context auth_context,
return ret; return ret;
} }
#ifndef EDQUOT
/* There's no EDQUOT on WIN32, for example */
#define EDQUOT ENOSPC
#endif
static int static int
append_to_log_file(krb5_context context, append_to_log_file(krb5_context context,
kadm5_server_context *server_context, kadm5_server_context *server_context,