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
3e4e1968
Commit
3e4e1968
authored
Mar 23, 2003
by
Per Cederqvist
Browse files
(prot_a_output_read_texts): Coding standards issue: compare the
pointer read_ranges against NULL, not 0.
parent
ec3804ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/server/prot-a-output.c
View file @
3e4e1968
/*
* $Id: prot-a-output.c,v 0.5
8
2003/0
1/12 19:56:12
ceder Exp $
* $Id: prot-a-output.c,v 0.5
9
2003/0
3/23 09:44:58
ceder Exp $
* Copyright (C) 1991-2002 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -155,7 +155,7 @@ static void
prot_a_output_read_texts
(
Connection
*
fp
,
const
Membership
*
mship
)
{
if
(
mship
->
read_ranges
==
0
)
if
(
mship
->
read_ranges
==
NULL
)
isc_puts
(
" 0 0 *"
,
fp
->
isc_session
);
else
{
...
...
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