2015-06-24 10:24:55 +08:00
|
|
|
/*
|
2016-01-15 05:50:22 +08:00
|
|
|
Copyright (c) 2016, Antonio SJ Musumeci <trapexit@spawn.link>
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2015-06-24 10:24:55 +08:00
|
|
|
*/
|
|
|
|
|
2016-09-14 20:36:06 +08:00
|
|
|
#include "errno.hpp"
|
2015-06-24 10:24:55 +08:00
|
|
|
#include "policy.hpp"
|
|
|
|
|
2018-10-14 11:48:30 +08:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2015-06-24 10:24:55 +08:00
|
|
|
using std::string;
|
|
|
|
using std::vector;
|
|
|
|
|
2019-01-07 01:52:55 +08:00
|
|
|
int
|
2020-08-17 01:30:43 +08:00
|
|
|
Policy::Func::invalid(const Category type_,
|
|
|
|
const Branches &branches_,
|
|
|
|
const char *fusepath_,
|
|
|
|
vector<string> *paths_)
|
2015-06-24 10:24:55 +08:00
|
|
|
{
|
2019-01-07 01:52:55 +08:00
|
|
|
return (errno=EINVAL,-1);
|
2015-06-24 10:24:55 +08:00
|
|
|
}
|