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)
Fri, May 22, 11:52 AM
Unknown Object (File)
Mon, May 18, 3:02 PM
Unknown Object (File)
Wed, Apr 29, 9:53 AM
Unknown Object (File)
Wed, Apr 29, 8:53 AM
Unknown Object (File)
Wed, Apr 29, 6:13 AM
Unknown Object (File)
Wed, Apr 29, 6:07 AM
Unknown Object (File)
Wed, Apr 29, 2:03 AM
Unknown Object (File)
Wed, Apr 29, 2:01 AM
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 Skipped
Unit
Tests Skipped
Build Status
Buildable 64250
Build 61134: arc lint + arc unit

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.