Skip to content

Commit

Permalink
Fix copyrights
Browse files Browse the repository at this point in the history
Patch by: michaelortmann
  • Loading branch information
michaelortmann authored Jul 6, 2024
1 parent 31b360e commit e1f8bdc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -158,5 +158,5 @@ the README file. If not, then READ IT!&@#%@!

Have fun with Eggdrop!

Copyright (C) 1997 Robey Pointer Copyright (C) 1999 - 2023 Eggheads
Copyright (C) 1997 Robey Pointer Copyright (C) 1999 - 2024 Eggheads
Development Team
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -216,5 +216,5 @@ OBTAINING HELP
- Don't ask to ask- just state your question, along with any
relevant details and error messages

Copyright (C) 1997 Robey Pointer Copyright (C) 1999 - 2023 Eggheads
Copyright (C) 1997 Robey Pointer Copyright (C) 1999 - 2024 Eggheads
Development Team
4 changes: 2 additions & 2 deletions misc/updatecopyright
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ update_copyright() {
mv ${i}_ $i
fi
# Cats and Dogs
sed -i '/Eggdrop v%s (C) 1997 Robey Pointer/c\ "Eggdrop v%s (C) 1997 Robey Pointer (C) 2010-'$YEAR' Eggheads",' src/main.c
sed -i '/Eggdrop v%s+%s (C) 1997 Robey Pointer/c\ "Eggdrop v%s+%s (C) 1997 Robey Pointer (C) 2010-'$YEAR' Eggheads",' src/main.c
sed -i '/Eggdrop v" EGG_STRINGVER " (C) 1997 Robey Pointer (C) 1999-/c\ "Eggdrop v" EGG_STRINGVER " (C) 1997 Robey Pointer (C) 1999-'$YEAR' Eggheads Development Team",' src/main.c
sed -i '/Eggdrop v" EGG_STRINGVER "+" EGG_PATCH " (C) 1997 Robey Pointer (C) 1999-/c\ "Eggdrop v" EGG_STRINGVER "+" EGG_PATCH " (C) 1997 Robey Pointer (C) 1999-'$YEAR' Eggheads Development Team",' src/main.c

}

Expand Down
14 changes: 7 additions & 7 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ int make_userfile = 0; /* Using bot in userfile-creation mode? */
int save_users_at = 0; /* Minutes past the hour to save the userfile? */
int notify_users_at = 0; /* Minutes past the hour to notify users of notes? */

char version[81]; /* Version info (long form) */
char version[128]; /* Version info (long form) */
char ver[41]; /* Version info (short form) */

volatile sig_atomic_t do_restart = 0; /* .restart has been called, restart ASAP */
Expand Down Expand Up @@ -976,15 +976,15 @@ int main(int arg_c, char **arg_v)
#ifdef EGG_PATCH
egg_snprintf(egg_version, sizeof egg_version, "%s+%s %u", EGG_STRINGVER, EGG_PATCH, egg_numver);
egg_snprintf(ver, sizeof ver, "eggdrop v%s+%s", EGG_STRINGVER, EGG_PATCH);
egg_snprintf(version, sizeof version,
"Eggdrop v%s+%s (C) 1997 Robey Pointer (C) 2010-2024 Eggheads",
EGG_STRINGVER, EGG_PATCH);
strlcpy(version,
"Eggdrop v" EGG_STRINGVER "+" EGG_PATCH " (C) 1997 Robey Pointer (C) 1999-2024 Eggheads Development Team",
sizeof version);
#else
egg_snprintf(egg_version, sizeof egg_version, "%s %u", EGG_STRINGVER, egg_numver);
egg_snprintf(ver, sizeof ver, "eggdrop v%s", EGG_STRINGVER);
egg_snprintf(version, sizeof version,
"Eggdrop v%s (C) 1997 Robey Pointer (C) 2010-2024 Eggheads",
EGG_STRINGVER);
strlcpy(version,
"Eggdrop v" EGG_STRINGVER " (C) 1997 Robey Pointer (C) 1999-2024 Eggheads Development Team",
sizeof version);
#endif

/* For OSF/1 */
Expand Down

0 comments on commit e1f8bdc

Please sign in to comment.