Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
7efe492a
Commit
7efe492a
authored
Aug 07, 1998
by
Per Cederqvist
Browse files
(prot_a_output_text_mapping): Emit "0" or "1", not "48" or "49", as
the later-texts-exists flag.
parent
0959dbc3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/server/prot-a-output.c
View file @
7efe492a
/*
* $Id: prot-a-output.c,v 0.3
2
1998/08/0
5 16:13:2
8 ceder Exp $
* $Id: prot-a-output.c,v 0.3
3
1998/08/0
7 23:08:4
8 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.3
2
1998/08/0
5 16:13:2
8 ceder Exp $"
;
rcsid
=
"$Id: prot-a-output.c,v 0.3
3
1998/08/0
7 23:08:4
8 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. */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment