From 7efe492ab57e4577de1c80574cc60037121421f3 Mon Sep 17 00:00:00 2001
From: Per Cederqvist <ceder@lysator.liu.se>
Date: Fri, 7 Aug 1998 23:08:48 +0000
Subject: [PATCH] (prot_a_output_text_mapping): Emit "0" or "1", not "48" or
 "49", as 	the later-texts-exists flag.

---
 src/server/prot-a-output.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/server/prot-a-output.c b/src/server/prot-a-output.c
index a63d67545..c8337874d 100644
--- a/src/server/prot-a-output.c
+++ b/src/server/prot-a-output.c
@@ -1,5 +1,5 @@
 /*
- * $Id: prot-a-output.c,v 0.32 1998/08/05 16:13:28 ceder Exp $
+ * $Id: prot-a-output.c,v 0.33 1998/08/07 23:08:48 ceder Exp $
  * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996  Lysator Academic Computer Association.
  *
  * This file is part of the LysKOM server.
@@ -29,7 +29,7 @@
  */
 
 static const char *
-rcsid = "$Id: prot-a-output.c,v 0.32 1998/08/05 16:13:28 ceder Exp $";
+rcsid = "$Id: prot-a-output.c,v 0.33 1998/08/07 23:08:48 ceder Exp $";
 #include "rcs.h"
 USE(rcsid);
 
@@ -949,7 +949,7 @@ prot_a_output_text_mapping(Connection *fp,
 
     /* Emit the "later-texts-exists" flag. */
 
-    mux_printf(fp, " %d", iter.search_ended ? '0' : '1');
+    mux_printf(fp, " %c", iter.search_ended ? '0' : '1');
 
 
     /* Emit the block, either a sparse or a dense one. */
-- 
GitLab