]> git.cameronkatri.com Git - pw-darwin.git/commit
Make vipw error message less cryptic
authorPiotr Pawel Stefaniak <pstef@FreeBSD.org>
Sat, 20 Jun 2020 06:20:00 +0000 (06:20 +0000)
committerPiotr Pawel Stefaniak <pstef@FreeBSD.org>
Sat, 20 Jun 2020 06:20:00 +0000 (06:20 +0000)
commit181546cc6f3a31193f3c424e0c0d322ebe7b3840
tree6255203987fa18cc0961212b4159e8ee16c23c0f
parentf1fc2d9573ad77a2ab54e0a2535ea1e1e8eb42b7
Make vipw error message less cryptic

Unable to find an editor, vipw would give this error:
# env EDITOR=fnord vipw
vipw: pw_edit(): No such file or directory

vigr or crontab do better:
# env EDITOR=fnord crontab -e
crontab: no crontab for root - using an empty one
crontab: fnord: No such file or directory
crontab: "fnord" exited with status 1

After this change, vipw behaves more like vigr or crontab:
# env EDITOR=fnord vipw
vipw: fnord: No such file or directory
vipw: "fnord" exited with status 1

Reviewed by: rpokala, emaste
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D25369
libutil/pw_util.c