Page MenuHomeFreeBSD

sndctl(8): Allow read-only sysctls
ClosedPublic

Authored by christos on May 17 2025, 9:04 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Sep 22, 12:22 AM
Unknown Object (File)
Sun, Sep 20, 2:55 AM
Unknown Object (File)
Aug 19 2026, 3:59 PM
Unknown Object (File)
Aug 19 2026, 12:56 PM
Unknown Object (File)
Aug 18 2026, 8:35 PM
Unknown Object (File)
Aug 18 2026, 8:19 PM
Unknown Object (File)
Aug 18 2026, 9:04 AM
Unknown Object (File)
Aug 16 2026, 9:17 PM
Subscribers

Details

Summary

Needed by follow-up patch.

Sponsored by: The FreeBSD Foundation
MFC after: 1 day

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

usr.sbin/sndctl/sndctl.c
676

For such simple code, it's IMO better to just use an if-statement:

if (arg != NULL) {
    n = strtol(...)
    ...
}
679

For this to work correctly, you need to set errno = 0 before the strtol() call.

christos marked 2 inline comments as done.

Address Mark's comments.

This revision is now accepted and ready to land.May 18 2025, 6:24 PM
This revision was automatically updated to reflect the committed changes.