Message ID | 1389975789-3981-1-git-send-email-steved@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/support/nfs/exports.c b/support/nfs/exports.c index d18667f..819d6c4 100644 --- a/support/nfs/exports.c +++ b/support/nfs/exports.c @@ -366,7 +366,7 @@ mkexportent(char *hname, char *path, char *options) ee.e_hostname = xstrdup(hname); if (strlen(path) >= sizeof(ee.e_path)) { - xlog(L_WARNING, "path name %s too long", path); + xlog(L_ERROR, "path name %s too long", path); return NULL; } strncpy(ee.e_path, path, sizeof (ee.e_path));
Signed-off-by: Steve Dickson <steved@redhat.com> --- support/nfs/exports.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)