* quota.c (SYS_FUNC(quotactl)): Move handling of Q_QUOTAON subcommand ...
(decode_cmd_data): ... here.
case Q_SYNC:
case Q_XQUOTASYNC:
break;
+ case Q_QUOTAON:
+ tprints(", ");
+ printxval(quota_formats, id, "QFMT_VFS_???");
+ tprints(", ");
+ printpath(tcp, data);
+ break;
case Q_GETQUOTA:
if (entering(tcp)) {
printuid(", ", id);
printxval(quotatypes, type, "???QUOTA");
tprints("), ");
printpath(tcp, tcp->u_arg[1]);
- switch (cmd) {
- case Q_QUOTAON:
- tprints(", ");
- printxval(quota_formats, id, "QFMT_VFS_???");
- tprints(", ");
- printpath(tcp, tcp->u_arg[3]);
- return RVAL_DECODED;
- }
}
return decode_cmd_data(tcp, id, cmd, tcp->u_arg[3]);
}