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, Oct 30, 4:23 PM
Unknown Object (File)
Mon, Oct 21, 5:13 AM
Unknown Object (File)
Sep 22 2024, 7:55 PM
Unknown Object (File)
Sep 22 2024, 4:33 AM
Unknown Object (File)
Sep 19 2024, 2:05 AM
Unknown Object (File)
Sep 18 2024, 5:23 PM
Unknown Object (File)
Sep 18 2024, 5:33 AM
Unknown Object (File)
Sep 17 2024, 2:16 AM
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.