summaryrefslogtreecommitdiffstats
path: root/cmd-load-buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmd-load-buffer.c')
-rw-r--r--cmd-load-buffer.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/cmd-load-buffer.c b/cmd-load-buffer.c
index 063cafa1..4a7f9ffb 100644
--- a/cmd-load-buffer.c
+++ b/cmd-load-buffer.c
@@ -60,10 +60,6 @@ cmd_load_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
ctx->error(ctx, "%s: %s", data->arg, strerror(errno));
return (-1);
}
- if (!S_ISREG(statbuf.st_mode)) {
- ctx->error(ctx, "%s: not a regular file", data->arg);
- return (-1);
- }
if ((f = fopen(data->arg, "rb")) == NULL) {
ctx->error(ctx, "%s: %s", data->arg, strerror(errno));