1
0
mirror of https://github.com/gophernicus/gophernicus.git synced 2024-06-16 06:25:23 +00:00

Up version number to 1.5-rc1 & update copyright years to 2014

This commit is contained in:
Kim Holviala 2014-01-25 11:54:00 +02:00
parent 50a8d5e798
commit 224d3a7aa4
12 changed files with 21 additions and 12 deletions

View File

@ -1,4 +1,4 @@
Gophernicus - Copyright (c) 2009-2012 Kim Holviala <kim@holviala.com>
Gophernicus - Copyright (c) 2009-2014 Kim Holviala <kim@holviala.com>
All rights reserved.
Redistribution and use in source and binary forms, with or without

View File

@ -8,7 +8,7 @@
NAME = gophernicus
PACKAGE = $(NAME)
BINARY = in.$(NAME)
VERSION = 1.4
VERSION = 1.5
SOURCES = $(NAME).c file.c menu.c string.c platform.c session.c options.c
HEADERS = functions.h files.h
@ -246,3 +246,11 @@ release: dist
defines:
$(CC) -dM -E $(NAME).c
#
# LOC
#
loc:
@wc -l *.c

2
README
View File

@ -1,4 +1,4 @@
Gophernicus - Copyright (c) 2009-2012 Kim Holviala <kim@holviala.com>
Gophernicus - Copyright (c) 2009-2014 Kim Holviala <kim@holviala.com>
Gophernicus is a modern full-featured (and hopefully) secure gopher
daemon for inetd. It is licensed under the BSD license.

2
debian/copyright vendored
View File

@ -1,4 +1,4 @@
Gophernicus - Copyright (c) 2009-2010 Kim Holviala <kim@holviala.com>
Gophernicus - Copyright (c) 2009-2014 Kim Holviala <kim@holviala.com>
All rights reserved.
Redistribution and use in source and binary forms, with or without

2
file.c
View File

@ -1,5 +1,5 @@
/*
* Gophernicus - Copyright (c) 2009-2012 Kim Holviala <kim@holviala.com>
* Gophernicus - Copyright (c) 2009-2014 Kim Holviala <kim@holviala.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

View File

@ -1,5 +1,5 @@
/*
* Gophernicus - Copyright (c) 2009-2012 Kim Holviala <kim@holviala.com>
* Gophernicus - Copyright (c) 2009-2014 Kim Holviala <kim@holviala.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

View File

@ -1,5 +1,5 @@
/*
* Gophernicus - Copyright (c) 2009-2012 Kim Holviala <kim@holviala.com>
* Gophernicus - Copyright (c) 2009-2014 Kim Holviala <kim@holviala.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

3
menu.c
View File

@ -1,5 +1,5 @@
/*
* Gophernicus - Copyright (c) 2009-2012 Kim Holviala <kim@holviala.com>
* Gophernicus - Copyright (c) 2009-2014 Kim Holviala <kim@holviala.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -307,6 +307,7 @@ int gophermap(state *st, char *mapfile, int depth)
/* Read lines one by one */
while (fgets(line, sizeof(line) - 1, fp)) {
/* Parse type & name */
chomp(line);
type = line[0];

View File

@ -1,5 +1,5 @@
/*
* Gophernicus - Copyright (c) 2009-2012 Kim Holviala <kim@holviala.com>
* Gophernicus - Copyright (c) 2009-2014 Kim Holviala <kim@holviala.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

View File

@ -1,5 +1,5 @@
/*
* Gophernicus - Copyright (c) 2009-2012 Kim Holviala <kim@holviala.com>
* Gophernicus - Copyright (c) 2009-2014 Kim Holviala <kim@holviala.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

View File

@ -1,5 +1,5 @@
/*
* Gophernicus - Copyright (c) 2009-2012 Kim Holviala <kim@holviala.com>
* Gophernicus - Copyright (c) 2009-2014 Kim Holviala <kim@holviala.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without

View File

@ -1,5 +1,5 @@
/*
* Gophernicus - Copyright (c) 2009-2012 Kim Holviala <kim@holviala.com>
* Gophernicus - Copyright (c) 2009-2014 Kim Holviala <kim@holviala.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without