Fix a couple of typos, one of which conceals a bug in parsing opt keywords with objects

svn:r2421
This commit is contained in:
Nick Mathewson
2004-10-06 13:28:34 +00:00
parent b56bb39ed6
commit b08ff7b1f7
+2 -2
View File
@@ -1147,7 +1147,7 @@ get_next_token(const char **s, where_syntax where) {
tok->args[0] = tor_strndup(*s,next-*s);
tok->n_args = 1;
*s = eat_whitespace_no_nl(next+1);
a_syn = OBJ_OK;
o_syn = OBJ_OK;
} else {
tok->tp = _UNRECOGNIZED;
next = strchr(*s, '\n');
@@ -1213,7 +1213,7 @@ get_next_token(const char **s, where_syntax where) {
break;
case NEED_KEY:
if (!tok->key)
RET_ERR("Missing publid key for keyword");
RET_ERR("Missing public key for keyword");
break;
case OBJ_OK:
break;