Page MenuHomeFreeBSD

bsdinstall/distfetch: Fix double include
ClosedPublic

Authored by asiciliano on Mar 27 2022, 6:42 PM.
Tags
None
Referenced Files
F133052307: D34685.id104256.diff
Wed, Oct 22, 12:04 PM
F133052306: D34685.id.diff
Wed, Oct 22, 12:04 PM
F133052299: D34685.id104326.diff
Wed, Oct 22, 12:04 PM
F133000842: D34685.diff
Tue, Oct 21, 11:11 PM
Unknown Object (File)
Sat, Oct 4, 8:44 PM
Unknown Object (File)
Sep 4 2025, 8:28 AM
Unknown Object (File)
Aug 5 2025, 12:21 PM
Unknown Object (File)
Jul 28 2025, 4:27 AM
Subscribers

Details

Summary

#include <sys/param.h>

#include <bsddialog.h>
#include <ctype.h>
#include <err.h>
#include <errno.h>
#include <stdio.h> <----------- GOOD (before fetch.h)
#include <fetch.h>
#include <stdio.h> <------------ BAD, double
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

Test Plan

Trivial

Diff Detail

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