Page MenuHomeFreeBSD

bsdinstall/distfetch: Fix double include
ClosedPublic

Authored by asiciliano on Mar 27 2022, 6:42 PM.
Tags
None
Referenced Files
Unknown Object (File)
Nov 20 2025, 8:25 PM
Unknown Object (File)
Nov 20 2025, 8:24 PM
Unknown Object (File)
Nov 20 2025, 8:23 PM
Unknown Object (File)
Nov 20 2025, 8:14 PM
Unknown Object (File)
Nov 6 2025, 10:24 PM
Unknown Object (File)
Oct 27 2025, 11:38 AM
Unknown Object (File)
Oct 22 2025, 12:04 PM
Unknown Object (File)
Oct 22 2025, 12:04 PM
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