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)
Jan 21 2025, 10:03 AM
Unknown Object (File)
Jan 17 2025, 9:39 PM
Unknown Object (File)
Dec 2 2024, 2:30 AM
Unknown Object (File)
Dec 2 2024, 2:28 AM
Unknown Object (File)
Nov 24 2024, 4:14 PM
Unknown Object (File)
Oct 28 2024, 1:31 AM
Unknown Object (File)
Oct 28 2024, 1:31 AM
Unknown Object (File)
Oct 28 2024, 1:31 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.