Page MenuHomeFreeBSD

Make vipw error message less cryptic
ClosedPublic

Authored by pstef on Jun 20 2020, 1:10 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Sep 27, 4:11 AM
Unknown Object (File)
Aug 30 2025, 4:29 AM
Unknown Object (File)
Aug 30 2025, 3:34 AM
Unknown Object (File)
Aug 23 2025, 1:01 AM
Unknown Object (File)
Aug 6 2025, 7:02 PM
Unknown Object (File)
Aug 1 2025, 9:13 PM
Unknown Object (File)
Jul 29 2025, 5:39 AM
Unknown Object (File)
Jul 27 2025, 9:21 AM
Subscribers

Details

Summary

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

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

pstef requested review of this revision.Jun 20 2020, 1:10 AM
pstef created this revision.
pstef edited the summary of this revision. (Show Details)
rpokala added a subscriber: rpokala.

Seems reasonable.

This revision is now accepted and ready to land.Jun 20 2020, 1:18 AM
emaste added a subscriber: emaste.
emaste added inline comments.
lib/libutil/pw_util.c
312 ↗(On Diff #73361)

this seems slightly unusual, typical would be err(1, "setgid"); I think

This revision was automatically updated to reflect the committed changes.