Преглед на файлове

Merge branch 'master' into next

* master:
  Update Copyrights
  Show full link to github
  Fix markdown links
  Readme updates
  Add Contributing file for github PR
Bryan Drewery преди 13 години
родител
ревизия
ae4360544e
променени са 57 файла, в които са добавени 100 реда и са изтрити 65 реда
  1. 31 0
      CONTRIBUTING.md
  2. 1 1
      LICENSE
  3. 14 10
      README
  4. 1 1
      src/adns.c
  5. 1 1
      src/base64.c
  6. 1 1
      src/bg.c
  7. 1 1
      src/binary.c
  8. 1 1
      src/binds.c
  9. 1 1
      src/botcmd.c
  10. 1 1
      src/botmsg.c
  11. 1 1
      src/botnet.c
  12. 1 1
      src/chanprog.c
  13. 1 1
      src/cmds.c
  14. 1 1
      src/core_binds.c
  15. 1 1
      src/dcc.c
  16. 1 1
      src/dccutil.c
  17. 1 1
      src/debug.c
  18. 1 1
      src/dl.c
  19. 1 1
      src/egg_timer.c
  20. 1 1
      src/enclink.c
  21. 1 1
      src/flags.c
  22. 1 1
      src/libcrypto.c
  23. 1 1
      src/libssl.c
  24. 1 1
      src/libtcl.c
  25. 1 1
      src/log.c
  26. 1 1
      src/main.c
  27. 1 1
      src/match.c
  28. 1 1
      src/misc.c
  29. 1 1
      src/misc_file.c
  30. 1 1
      src/mod/channels.mod/chanmisc.c
  31. 1 1
      src/mod/channels.mod/channels.c
  32. 1 1
      src/mod/channels.mod/cmdschan.c
  33. 1 1
      src/mod/channels.mod/userchan.c
  34. 1 1
      src/mod/compress.mod/compress.c
  35. 1 1
      src/mod/console.mod/console.c
  36. 1 1
      src/mod/ctcp.mod/ctcp.c
  37. 1 1
      src/mod/irc.mod/chan.c
  38. 1 1
      src/mod/irc.mod/cmdsirc.c
  39. 1 1
      src/mod/irc.mod/irc.c
  40. 1 1
      src/mod/irc.mod/mode.c
  41. 1 1
      src/mod/irc.mod/msgcmds.c
  42. 1 1
      src/mod/server.mod/cmdsserv.c
  43. 1 1
      src/mod/server.mod/server.c
  44. 1 1
      src/mod/server.mod/servmsg.c
  45. 1 1
      src/mod/share.mod/share.c
  46. 1 1
      src/mod/transfer.mod/transfer.c
  47. 1 1
      src/mod/update.mod/update.c
  48. 1 1
      src/net.c
  49. 1 1
      src/openssl.c
  50. 1 1
      src/rfc1459.c
  51. 1 1
      src/shell.c
  52. 1 1
      src/socket.c
  53. 1 1
      src/sprintf.c
  54. 1 1
      src/thread.c
  55. 1 1
      src/userent.c
  56. 1 1
      src/userrec.c
  57. 1 1
      src/users.c

+ 31 - 0
CONTRIBUTING.md

@@ -0,0 +1,31 @@
+Contributions are welcome.
+
+The public git repository can be found on http://github.com/wraith/wraith
+
+## Guides
+ * [Github's contribution guide](http://github.com/guides/fork-a-project-and-submit-your-modifications)
+ * [Github's pull request guide](http://github.com/guides/pull-requests Github's pull request guide)
+ * [Git's Submitting Patches Guide](http://raw.github.com/git/git/master/Documentation/SubmittingPatches)
+
+There's two options for submitting patches:
+ * Use github's pull requests to submit patches.
+ * Send patches to wraith-patches@botpack.net.
+  * [git-format-patch(1)](http://www.kernel.org/pub/software/scm/git/docs/git-format-patch.html) should be used for all patches.
+
+## Guidelines
+ * Please stick to the coding style found in the files.
+  * No tabs
+  * 2 spaces indented for each level
+  * Braces on the same line as `if', `else', functions, etc.
+ * Avoid non-portable code
+ * No ASM
+ * Comment all changes which are not clear
+ * No change should introduce warnings into the normal or debug compiling.
+ * Use strlcpy,strlcat,snprintf,strdup
+ * Do not allocate large buffers on the stack (char x[4096] = "")
+ * Avoid excessive use of strlen(), cache your values when possible.
+ * Use very little C++ additions. (Adds too much overhead since most of the code is using c stdlib)
+  * Avoid all STL.
+  * Do not use exceptions
+  * No RTTI
+ * Communicate with other developers in #wraith on EFnet.

+ 1 - 1
LICENSE

@@ -30,7 +30,7 @@ This package includes a mix of licenses:
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team (http://www.eggheads.org)
- * Copyright (C) 2002 - 2010 Bryan Drewery (http://wraith.botpack.net)
+ * Copyright (C) 2002 - 2013 Bryan Drewery (http://wraith.botpack.net)
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 14 - 10
README

@@ -4,8 +4,9 @@ __  _  ______________  |__|/  |_|  |__
  \     /  |  | \// __ \|  ||  | |   \  \
   \/\_/   |__|  (____  /__||__| |___|  /
                      \/              \/
-       http://wraith.botpack.net
-            @wraithbotpack
+    http://wraith.botpack.net
+    http://github.com/wraith/wraith
+    @wraithbotpack
 
 Wraith is an IRC channel management bot written purely in C/C++.
 It has been in development since late 2003. It is based on
@@ -13,14 +14,17 @@ Eggdrop 1.6.12 but has since evolved into something much
 different at its core. TCL and loadable modules are currently
 not supported.
 
-Wraith aims to be a secure and easy to setup and manage botnet.
-A botnet can be setup in a matter of minutes and updated later with 1 command.
-Leaf bots save no files locally, but rather store configuration encrypted in their own binary.
-Hubs do not connect to IRC, and keep a local encrypted copy of the userfile.
+* Wraith aims to be a secure and easy to setup and manage botnet.
+* A botnet can be setup in a matter of minutes and updated later with 1 command.
+* Leaf bots save no files locally, but rather store configuration encrypted in
+  their own binary.
+* Hubs do not connect to IRC, and keep a local encrypted copy of the userfile.
 
-All official sites, documentation, support venues, repositories and source urls are referenced here.
+All official sites, documentation, support venues, repositories and source urls
+are referenced here.
 
-For official release announcements send an email to: wraith-announce-subscribe@botpack.net
+For official release announcements send an email to:
+  wraith-announce-subscribe@botpack.net
 
 Download: http://wraith.botpack.net/wiki/Download
 Git: git://github.com/wraith/wraith.git
@@ -28,8 +32,8 @@ Git: git://github.com/wraith/wraith.git
 See git for a list of Contributors: git shortlog -sen master
 
 Support:
-* How To Contribute: http://wraith.botpack.net/wiki/Contributing
-* Getting Started: http://wraith.botpack.net/wiki/GettingStarted
+* How To Contribute: http://github.com/wraith/wraith/blob/master/CONTRIBUTING.md
+* Getting Started: http://github.com/wraith/wraith/wiki/GettingStarted
 * FAQ: http://wraith.botpack.net/wiki/FrequentlyAskedQuestions
 * Documentation Index: http://wraith.botpack.net/wiki/Documentation
 * Issues can be reported at: https://github.com/wraith/wraith/issues

+ 1 - 1
src/adns.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/base64.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/bg.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/binary.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/binds.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/botcmd.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/botmsg.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/botnet.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/chanprog.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/cmds.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/core_binds.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/dcc.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/dccutil.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/debug.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/dl.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/egg_timer.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/enclink.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/flags.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/libcrypto.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/libssl.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/libtcl.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/log.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/main.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/match.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/misc.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/misc_file.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/channels.mod/chanmisc.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/channels.mod/channels.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/channels.mod/cmdschan.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/channels.mod/userchan.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/compress.mod/compress.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/console.mod/console.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/ctcp.mod/ctcp.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/irc.mod/chan.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/irc.mod/cmdsirc.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/irc.mod/irc.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/irc.mod/mode.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/irc.mod/msgcmds.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/server.mod/cmdsserv.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/server.mod/server.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/server.mod/servmsg.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/share.mod/share.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/transfer.mod/transfer.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/mod/update.mod/update.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/net.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/openssl.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/rfc1459.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/shell.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/socket.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/sprintf.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/thread.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/userent.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/userrec.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License

+ 1 - 1
src/users.c

@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 1997 Robey Pointer
  * Copyright (C) 1999 - 2002 Eggheads Development Team
- * Copyright (C) 2002 - 2010 Bryan Drewery
+ * Copyright (C) 2002 - 2013 Bryan Drewery
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License