diff options
author | Martin Mares <mj@ucw.cz> | 1999-11-30 12:56:52 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-11-30 12:56:52 +0000 |
commit | 10b5baaef32076369b06b4318cc61e6fa11e5493 (patch) | |
tree | 645ffd779571d65689362d97600453cd8d93f2d9 | |
parent | 163b2073465b1d2f90d23832456e79463fdec308 (diff) |
Don't use continuation shortcuts until real client is written.
-rw-r--r-- | nest/cli.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -26,9 +26,11 @@ cli_printf(cli *c, int code, char *msg, ...) if (cd < 0) { cd = -cd; +#if 0 /* FIXME: Enable */ if (cd == c->last_reply) size = bsprintf(buf, " "); else +#endif size = bsprintf(buf, "%04d-", cd); } else |