Fix segfault

This commit is contained in:
Michael Spang 2009-09-10 14:41:42 -04:00
parent 8c1eb0a911
commit c7bd720124
1 changed files with 3 additions and 3 deletions

View File

@ -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");