mirror of
https://github.com/gophernicus/gophernicus.git
synced 2025-02-02 15:08:00 -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.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
10
Makefile
10
Makefile
@ -8,7 +8,7 @@
|
|||||||
NAME = gophernicus
|
NAME = gophernicus
|
||||||
PACKAGE = $(NAME)
|
PACKAGE = $(NAME)
|
||||||
BINARY = in.$(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
|
SOURCES = $(NAME).c file.c menu.c string.c platform.c session.c options.c
|
||||||
HEADERS = functions.h files.h
|
HEADERS = functions.h files.h
|
||||||
@ -246,3 +246,11 @@ release: dist
|
|||||||
defines:
|
defines:
|
||||||
$(CC) -dM -E $(NAME).c
|
$(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
|
Gophernicus is a modern full-featured (and hopefully) secure gopher
|
||||||
daemon for inetd. It is licensed under the BSD license.
|
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.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* 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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* 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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* 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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* 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 */
|
/* Read lines one by one */
|
||||||
while (fgets(line, sizeof(line) - 1, fp)) {
|
while (fgets(line, sizeof(line) - 1, fp)) {
|
||||||
|
|
||||||
/* Parse type & name */
|
/* Parse type & name */
|
||||||
chomp(line);
|
chomp(line);
|
||||||
type = line[0];
|
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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* 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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* 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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
2
string.c
2
string.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.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
Loading…
Reference in New Issue
Block a user