From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-4.0 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI,SPF_HELO_NONE,SPF_NONE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by dcvr.yhbt.net (Postfix) with ESMTP id EB7061F463 for ; Mon, 2 Dec 2019 14:16:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727433AbfLBOQK (ORCPT ); Mon, 2 Dec 2019 09:16:10 -0500 Received: from pb-smtp21.pobox.com ([173.228.157.53]:55537 "EHLO pb-smtp21.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727362AbfLBOQK (ORCPT ); Mon, 2 Dec 2019 09:16:10 -0500 Received: from pb-smtp21.pobox.com (unknown [127.0.0.1]) by pb-smtp21.pobox.com (Postfix) with ESMTP id 43D289A593; Mon, 2 Dec 2019 09:16:08 -0500 (EST) (envelope-from junio@pobox.com) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:in-reply-to:references:date:message-id:mime-version :content-type; s=sasl; bh=SU7wNmhtnT5nvPESFjHes4Gbh6s=; b=Vxso1/ yMY8qgWto+jFnJ+Y9Z2CCU3N8GZTOrEEcb5ZuEZINcLeqbJ6A0WUF2HT9IaCtmwQ cvhAq07WyshzPwXqYWY+M+zqE4ytCUkqPZxnpAR8kewwZfg424o8GhdWnD7lc7tc LU15nzETY6lX1V7s2XSdjZ4sc+H6ONeSmYIdI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:in-reply-to:references:date:message-id:mime-version :content-type; q=dns; s=sasl; b=mFgJMseKIMBcV3RnHfQa7ubrLs3xpGkQ mj7iM+he5zY5FZPQOMRIJv7tritp4z3RuJ9EtBUVAuwVdoKJQJOf8JH6FOe5dnMt saVeaVqC/+6vwikzw6pPBgNgvZG4fFFYXCJ/bSaGYWB9TcClOjdDHtVaFBA986VG X2Fd04ghbrk= Received: from pb-smtp21.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp21.pobox.com (Postfix) with ESMTP id 3B60B9A592; Mon, 2 Dec 2019 09:16:08 -0500 (EST) (envelope-from junio@pobox.com) Received: from pobox.com (unknown [34.76.80.147]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pb-smtp21.pobox.com (Postfix) with ESMTPSA id EC2C39A58E; Mon, 2 Dec 2019 09:16:03 -0500 (EST) (envelope-from junio@pobox.com) From: Junio C Hamano To: "Johannes Schindelin via GitGitGadget" Cc: git@vger.kernel.org, Johannes Schindelin Subject: Re: [PATCH 1/1] pkt-line: fix a typo In-Reply-To: (Johannes Schindelin via GitGitGadget's message of "Mon, 02 Dec 2019 08:43:11 +0000") References: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) Date: Mon, 02 Dec 2019 06:16:00 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Pobox-Relay-ID: 4634F6FC-150E-11EA-8EF0-8D86F504CC47-77302942!pb-smtp21.pobox.com Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org "Johannes Schindelin via GitGitGadget" writes: > From: Johannes Schindelin > > This typo was introduced in 2153d478b74 (pkt-line: introduce > packet_read_with_status, 2018-03-14). > > Signed-off-by: Johannes Schindelin > --- Good eyes. Will queue. Thanks. > pkt-line.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/pkt-line.h b/pkt-line.h > index 5c62015db4..fef3a0d792 100644 > --- a/pkt-line.h > +++ b/pkt-line.h > @@ -77,7 +77,7 @@ int packet_read(int fd, char **src_buffer, size_t *src_len, char > /* > * Read a packetized line into a buffer like the 'packet_read()' function but > * returns an 'enum packet_read_status' which indicates the status of the read. > - * The number of bytes read will be assigined to *pktlen if the status of the > + * The number of bytes read will be assigned to *pktlen if the status of the > * read was 'PACKET_READ_NORMAL'. > */ > enum packet_read_status {