From 61f3fc7e4dc5bdf543940f8cc7334f5f64d4b9fb Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 30 Jul 2009 17:46:12 +0000 Subject: Don't babysit people and let them try to load /dev/zero or (more useful) /dev/null if they want. --- cmd-load-buffer.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'cmd-load-buffer.c') 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)); -- cgit