From: Ari Johnson Date: Mon, 25 Apr 2011 04:11:25 +0000 (-0500) Subject: Add FIXME notes to point to the bugs worked around by recent commits X-Git-Url: https://git.theari.com/?a=commitdiff_plain;h=c67fab5448391f9e44fddabde9376f0be1670be3;p=cobramush.git Add FIXME notes to point to the bugs worked around by recent commits refs #250 refs #247 refs #246 --- diff --git a/src/attrib.c b/src/attrib.c index 8af76e8..9765d62 100644 --- a/src/attrib.c +++ b/src/attrib.c @@ -2085,7 +2085,7 @@ do_atrlock(dbref player, const char *xarg1, const char *arg2, dbref thing, creator; char *p, *arg1; ATTR *ptr; - int status = 0; + int status = 0; /* FIXME: temporary workaround, see #246 */ boolexp key; if (!arg2 || !*arg2) diff --git a/src/funlist.c b/src/funlist.c index d67a9d0..aeb1a53 100644 --- a/src/funlist.c +++ b/src/funlist.c @@ -2266,7 +2266,7 @@ FUNCTION(fun_splice) FUNCTION(fun_break) { - int i = 0; + int i = 0; /* FIXME: temporary workaround, see #247 */ if(!args[0] || !*args[0]) i = 0; diff --git a/src/match.c b/src/match.c index d0dd877..51ec65b 100644 --- a/src/match.c +++ b/src/match.c @@ -564,7 +564,7 @@ MATCH_FUNC(match_list) MATCH_FUNC(match_exit) { dbref loc; - int mret = MATCH_EXACT; /* FIXME: temporary workaround */ + int mret = MATCH_EXACT; /* FIXME: temporary workaround, see #250 */ loc = (IsRoom(who)) ? who : Location(who); if (flags & MAT_REMOTES) {