diff options
-rw-r--r-- | sbin/geom/class/eli/geom_eli.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/geom/class/eli/geom_eli.c b/sbin/geom/class/eli/geom_eli.c index c4577a1..e71adc9 100644 --- a/sbin/geom/class/eli/geom_eli.c +++ b/sbin/geom/class/eli/geom_eli.c @@ -505,7 +505,7 @@ eli_init(struct gctl_req *req) nargs = gctl_get_int(req, "nargs"); if (nargs != 1) { - gctl_error(req, "Too few arguments."); + gctl_error(req, "Invalid number of arguments."); return; } prov = gctl_get_ascii(req, "arg0"); @@ -611,7 +611,7 @@ eli_attach(struct gctl_req *req) nargs = gctl_get_int(req, "nargs"); if (nargs != 1) { - gctl_error(req, "Too few arguments."); + gctl_error(req, "Invalid number of arguments."); return; } prov = gctl_get_ascii(req, "arg0"); @@ -756,7 +756,7 @@ eli_setkey(struct gctl_req *req) nargs = gctl_get_int(req, "nargs"); if (nargs != 1) { - gctl_error(req, "Too few arguments."); + gctl_error(req, "Invalid number of arguments."); return; } prov = gctl_get_ascii(req, "arg0"); @@ -830,7 +830,7 @@ eli_delkey(struct gctl_req *req) nargs = gctl_get_int(req, "nargs"); if (nargs != 1) { - gctl_error(req, "Too few arguments."); + gctl_error(req, "Invalid number of arguments."); return; } prov = gctl_get_ascii(req, "arg0"); |