From 0bee4c2c74eda3d97c672600255f1d0ebb2cffa8 Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Fri, 16 Jan 2009 15:00:30 +0000 Subject: [PATCH] Rename mail(1)'s aux.c to util.c. The name `aux' is reserved on Windows file systems. aux.c in the mail(1) directory contains some random utility functions. I'm renaming this file to util.c to make it possible to check out this directory on Windows. MFC after: 1 month --- usr.bin/mail/Makefile | 4 ++-- usr.bin/mail/{aux.c => util.c} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename usr.bin/mail/{aux.c => util.c} (100%) diff --git a/usr.bin/mail/Makefile b/usr.bin/mail/Makefile index 491d06f97c5..5fa455b19d3 100644 --- a/usr.bin/mail/Makefile +++ b/usr.bin/mail/Makefile @@ -2,9 +2,9 @@ # $FreeBSD$ PROG= mail -SRCS= version.c aux.c cmd1.c cmd2.c cmd3.c cmdtab.c collect.c edit.c fio.c \ +SRCS= version.c cmd1.c cmd2.c cmd3.c cmdtab.c collect.c edit.c fio.c \ getname.c head.c v7.local.c lex.c list.c main.c names.c popen.c \ - quit.c send.c strings.c temp.c tty.c vars.c + quit.c send.c strings.c temp.c tty.c util.c vars.c FILES= mail.help mail.tildehelp FILESDIR= ${SHAREDIR}/misc EFILES= mail.rc diff --git a/usr.bin/mail/aux.c b/usr.bin/mail/util.c similarity index 100% rename from usr.bin/mail/aux.c rename to usr.bin/mail/util.c