Skip to content

Commit 44bb699

Browse files
committed
SQUASHME: I had the warn flag negated
1 parent 410066e commit 44bb699

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

bin/varnishd/storage/stevedore.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -204,10 +204,9 @@ STV_warn(void)
204204
struct stevedore *stv;
205205

206206
ASSERT_CLI();
207-
/* First send close warning */
208207
STV_Foreach(stv)
209208
if (stv->close != NULL)
210-
stv->close(stv, 0);
209+
stv->close(stv, 1);
211210
}
212211

213212
void
@@ -216,10 +215,9 @@ STV_close(void)
216215
struct stevedore *stv;
217216

218217
ASSERT_CLI();
219-
/* First send close warning */
220218
STV_Foreach(stv)
221219
if (stv->close != NULL)
222-
stv->close(stv, 1);
220+
stv->close(stv, 0);
223221
}
224222

225223
/*-------------------------------------------------------------------

0 commit comments

Comments
 (0)