Fix segfault

pull/5/head
Michael Spang 14 years ago
parent 8c1eb0a911
commit c7bd720124
  1. 6
      src/dslave.c

@ -84,11 +84,11 @@ static void handle_op_message(uint32_t in_type, struct strbuf *in, struct strbuf
struct op *op = get_local_op(in_type);
char *envp[16];
debug("running op: %s", op->name);
if (!op->name)
if (!op)
fatal("operation %x does not exist", in_type);
debug("running op: %s", op->name);
/* TEMPORARY */
if (!client_username())
fatal("unathenticated");

Loading…
Cancel
Save