diff options
author | des <des@FreeBSD.org> | 2007-12-14 10:26:58 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2007-12-14 10:26:58 +0000 |
commit | a1830118bafa4cb5662e20cb077d13f7a800d0f7 (patch) | |
tree | f8b313061d8f9a9fe0e8e1bbee4bf59f74f426cf /lib/libfetch/Makefile | |
parent | 172a6bf06179f5675de365c7f2a22d25a9f9e53f (diff) | |
download | FreeBSD-src-a1830118bafa4cb5662e20cb077d13f7a800d0f7.zip FreeBSD-src-a1830118bafa4cb5662e20cb077d13f7a800d0f7.tar.gz |
Clean up namespace violations.
MFC after: 1 week
Diffstat (limited to 'lib/libfetch/Makefile')
-rw-r--r-- | lib/libfetch/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libfetch/Makefile b/lib/libfetch/Makefile index f49c763..349eb61 100644 --- a/lib/libfetch/Makefile +++ b/lib/libfetch/Makefile @@ -28,7 +28,7 @@ WARNS?= 2 SHLIB_MAJOR= 5 ftperr.h: ftp.errors - @echo "static struct fetcherr _ftp_errlist[] = {" > ${.TARGET} + @echo "static struct fetcherr ftp_errlist[] = {" > ${.TARGET} @cat ${.ALLSRC} \ | grep -v ^# \ | sort \ @@ -39,7 +39,7 @@ ftperr.h: ftp.errors @echo "};" >> ${.TARGET} httperr.h: http.errors - @echo "static struct fetcherr _http_errlist[] = {" > ${.TARGET} + @echo "static struct fetcherr http_errlist[] = {" > ${.TARGET} @cat ${.ALLSRC} \ | grep -v ^# \ | sort \ |