hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit db6d5277706e606b48035fea8bed8736deb8b2a6
parent 1005baab5b6a388d729a360ea35ceb69c3e6be7f
Author: Alexey Yerin <yyp@disroot.org>
Date:   Thu, 15 Apr 2021 17:12:40 +0300

unix/passwd: update abort message to be consistent

Diffstat:
Munix/passwd/passwd.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/unix/passwd/passwd.ha b/unix/passwd/passwd.ha @@ -87,7 +87,7 @@ export fn getuser(username: str) (pwent | void) = { let ent = match (nextpw(file)) { e: pwent => e, io::EOF => break, - * => abort("/etc/passwd entry is invalid"), + * => abort("Invalid entry in /etc/passwd"), }; defer pwent_finish(ent);