Page MenuHomeFreeBSD

syslogd: Rearrange syslogd.c
AbandonedPublic

Authored by jfree on Aug 8 2023, 4:39 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Apr 15, 8:03 AM
Unknown Object (File)
Mon, Apr 13, 9:50 PM
Unknown Object (File)
Sat, Apr 11, 10:59 PM
Unknown Object (File)
Wed, Mar 25, 7:55 AM
Unknown Object (File)
Feb 8 2026, 12:00 PM
Unknown Object (File)
Jan 31 2026, 3:47 AM
Unknown Object (File)
Dec 8 2025, 7:46 PM
Unknown Object (File)
Nov 27 2025, 1:16 PM
Subscribers

Details

Reviewers
emaste
markj
Summary
  • Alphabetically order global variables
  • Remove declarations for static functions
  • Reorder functions according to static declaration

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

jfree requested review of this revision.Aug 8 2023, 4:39 PM

I'm not a big fan of reordering functions like this, since that makes git blame quite useless for little gain. In general this kind of commit should come at the end of a patch stack if at all. If it's too painful to reorder it then ok, just something to keep in mind for next time.

I'm not a big fan of reordering functions like this, since that makes git blame quite useless for little gain. In general this kind of commit should come at the end of a patch stack if at all. If it's too painful to reorder it then ok, just something to keep in mind for next time.

I concur. I will just drop this one. It'll make rebasing horrible too.
The negatives far outweigh the positives.