From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: ** X-Spam-Status: No, score=2.3 required=5.0 tests=DATE_IN_FUTURE_03_06, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 Received: (qmail 7088 invoked from network); 18 Sep 2021 05:29:02 -0000 Received: from 4ess.inri.net (216.126.196.42) by inbox.vuxu.org with ESMTPUTF8; 18 Sep 2021 05:29:02 -0000 Received: from mail-pf1-f173.google.com ([209.85.210.173]) by 4ess; Fri Sep 17 23:11:41 -0400 2021 Received: by mail-pf1-f173.google.com with SMTP id j6so10948189pfa.4 for <9front@9front.org>; Fri, 17 Sep 2021 20:10:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:message-id:date:to:subject:mime-version; bh=I1YeLmpCipIHTjiI19OMI3B3SYAPc7gG1T4cEumoeXk=; b=kN0+P9hLfxIm0VT4EiygFFuMtIKQiUGKEi9EfEY30EIlqOcCB/qAfeLZ8xe+YRI9h/ 3zlF05nW+dCP3mk3MWQpqY/wLxgmw9OHgCe2CstdcSO8jfmuGpyGt75gIvPLXu6iowDx nVdfibM2r+R9rgViEyECgH42SNYRoTV8qIpf3gAk7p/NbLvtQyBkpND9nZ0xnkUDrIA7 iMLKsTfAvaKf0gV4kYX5V0uyhMnGXaceBYv5eMc5YWcRUtTQ19BXvAejo8582OcvhI5c NAEhzbudzXq9pbyVNWnQY8lrM0IX0/uqjjdieeur6T9b5WHllsiDokPnPxaQ57N3FbCP 43QQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:message-id:date:to:subject:mime-version; bh=I1YeLmpCipIHTjiI19OMI3B3SYAPc7gG1T4cEumoeXk=; b=E3XrBpibs4Vm0w8WiCSJQwFFJt0fQ0SuF+rvOwk/Bp+YUOl6X0sU2sK7TV1UrWEK0l 2RLUv+T5t2zkzu3rUeAiJ3Co8AZ42QQpZjUgdfynxnwS3fiDP/d3KHe7TMJLn+QooGhL 3+BXa2KGh7wp46InZt6t/A/uiYafV46QspE2cFyKl+byYV2lY440EJNpnBHvq32Vr3Vg lT29BeKlKBK0VDmXM/mpPsWq2eM4dr/UFbE04nztQlxBsUkr0GamJMhSShBtizNYqbjK Egsd737JqHEowSbcHhQFiLr7BC0BAqgobErz+T8JXifNFyZ93fw04kDOg1cuSfnZcPtm uPpQ== X-Gm-Message-State: AOAM532Ss0tXCrlbAJLlMRSkMwmTcUgHVr8Y3YzfK+nhhqHacCyZxWjB nR+K1b8rXw8g8KuzeVxlj2RhZVaajPc= X-Google-Smtp-Source: ABdhPJzUAOCY6bpYr0W9Bolu8fc5mHk4bhLAGnOWDXlMo/wGqaJrBwCsJEuksf0EbWCQvHhxJjV6oA== X-Received: by 2002:a05:6e02:1d83:: with SMTP id h3mr390326ila.274.1631718714298; Wed, 15 Sep 2021 08:11:54 -0700 (PDT) Return-Path: Received: from lamium.aspen.local ([35.24.192.117]) by smtp.gmail.com with ESMTPSA id b76sm111053iof.17.2021.09.15.08.11.53 for <9front@9front.org> (version=TLS1_2 cipher=ECDHE-ECDSA-CHACHA20-POLY1305 bits=256/256); Wed, 15 Sep 2021 08:11:53 -0700 (PDT) From: dogedoge61@gmail.com X-Google-Original-From: binarycat@gmail.com Message-ID: <2AB663B12C5F23BFDAC1087D871EAABF@gmail.com> Date: Wed, 15 Sep 2021 15:11:49 -0400 To: 9front@9front.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="upas-kgnibisezvbbtgywqtjsjuuxnm" List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: SSL base hosting-based solution Subject: [9front] [PATCH] aescbc(1) correction Reply-To: 9front@9front.org Precedence: bulk This is a multi-part message in MIME format. --upas-kgnibisezvbbtgywqtjsjuuxnm Content-Disposition: inline Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit the description of the -i option says it reads the password from standard input. this is wrong. it reads the password from file descriptor 3. this patch corrects this - binarycat --upas-kgnibisezvbbtgywqtjsjuuxnm Content-Disposition: inline Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit --- //.git/fs/object/8f4842d3465e96d264f5c2f7fa2d61db871aae9f/tree/sys/man/1/secstore +++ sys/man/1/secstore @@ -68,7 +68,7 @@ .PP Option .B -i -says that the password should be read from standard input +says that the password should be read from file descriptor 3 instead of from .BR /dev/cons . .PP --upas-kgnibisezvbbtgywqtjsjuuxnm--