summaryrefslogtreecommitdiffstats
path: root/nest/cli.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1999-11-30 13:56:52 +0100
committerMartin Mares <mj@ucw.cz>1999-11-30 13:56:52 +0100
commit10b5baaef32076369b06b4318cc61e6fa11e5493 (patch)
tree645ffd779571d65689362d97600453cd8d93f2d9 /nest/cli.c
parent163b2073465b1d2f90d23832456e79463fdec308 (diff)
downloadbird-10b5baaef32076369b06b4318cc61e6fa11e5493.tar
bird-10b5baaef32076369b06b4318cc61e6fa11e5493.zip
Don't use continuation shortcuts until real client is written.
Diffstat (limited to 'nest/cli.c')
-rw-r--r--nest/cli.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/nest/cli.c b/nest/cli.c
index 4ef0f83..ca4cc82 100644
--- a/nest/cli.c
+++ b/nest/cli.c
@@ -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