mirror of
https://github.com/gophernicus/gophernicus.git
synced 2024-11-03 04:27:17 -05:00
Up version number to 1.5-rc1 & update copyright years to 2014
This commit is contained in:
parent
50a8d5e798
commit
224d3a7aa4
2
LICENSE
2
LICENSE
@ -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
|
||||
|
10
Makefile
10
Makefile
@ -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
2
README
@ -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
2
debian/copyright
vendored
@ -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
2
file.c
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
3
menu.c
@ -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];
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user