logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git/
commit: ee20c40c03d8052719dfb03bcd68ce19ad6dc8f4
parent 7616f485b81c6eb657708998e644e4623820b87f
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Wed,  2 Jul 2025 20:51:32 +0200

cmd/install: fix -o being tied to group instead of user

Diffstat:

Mcmd/install.c2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/install.c b/cmd/install.c @@ -256,7 +256,7 @@ main(int argc, char *argv[]) if(parse_group(optarg, &group) != 0) return 1; break; case 'o': - if(parse_group(optarg, &user) != 0) return 1; + if(parse_user(optarg, &user) != 0) return 1; break; case 'T': opt_T = true;