File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -1415,9 +1415,17 @@ static int process_ack(struct fetch_negotiator *negotiator,
1415
1415
* otherwise.
1416
1416
*/
1417
1417
if (* received_ready && reader -> status != PACKET_READ_DELIM )
1418
- die (_ ("expected packfile to be sent after 'ready'" ));
1418
+ /*
1419
+ * TRANSLATORS: The parameter will be 'ready', a protocol
1420
+ * keyword.
1421
+ */
1422
+ die (_ ("expected packfile to be sent after '%s'" ), "ready" );
1419
1423
if (!* received_ready && reader -> status != PACKET_READ_FLUSH )
1420
- die (_ ("expected no other sections to be sent after no 'ready'" ));
1424
+ /*
1425
+ * TRANSLATORS: The parameter will be 'ready', a protocol
1426
+ * keyword.
1427
+ */
1428
+ die (_ ("expected no other sections to be sent after no '%s'" ), "ready" );
1421
1429
1422
1430
return 0 ;
1423
1431
}
You can’t perform that action at this time.
0 commit comments