diff --git a/include/ircd/fs.h b/include/ircd/path.h similarity index 67% rename from include/ircd/fs.h rename to include/ircd/path.h index a88275db1..427bd9b3f 100644 --- a/include/ircd/fs.h +++ b/include/ircd/path.h @@ -1,29 +1,26 @@ /* - * ircd-ratbox: A slightly useful ircd. - * defaults.h: The ircd defaults header. + * Copyright (C) 2016 Charybdis Development Team + * Copyright (C) 2016 Jason Volk * - * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center - * Copyright (C) 1996-2002 Hybrid Development Team - * Copyright (C) 2002-2004 ircd-ratbox development team + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice is present in all copies. * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - * USA + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. */ #pragma once -#define HAVE_IRCD_FS_H +#define HAVE_IRCD_PATH_H /* * Directory paths and filenames for UNIX systems. diff --git a/include/ircd/stdinc.h b/include/ircd/stdinc.h index 7ef9426c9..111af04b1 100644 --- a/include/ircd/stdinc.h +++ b/include/ircd/stdinc.h @@ -83,7 +83,7 @@ namespace ircd #include "rfc1459.h" #include "fmt.h" #include "err.h" -#include "fs.h" +#include "path.h" #include "s_assert.h" #include "match.h" #include "mode_table.h"