Skip to content

Commit

Permalink
Fix format string
Browse files Browse the repository at this point in the history
  • Loading branch information
vasyahuyasa committed Apr 13, 2017
1 parent eab913d commit dcb6b82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/mod/irc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ void ircprocess(ircnet *n, char *user[3], int g, int numargs, char *w[])
if(!strcasecmp(q, "VERSION"))
//remod
//ircsend(n, "NOTICE %s :\vVERSION %s v%s-%s%d (%s)%s%s\v", user[0], VERSION_NAME, VERSION_STRING, versionplatname, versionarch, VERSION_RELEASE, *VERSION_URL ? ", " : "", VERSION_URL);
ircsend(n, "NOTICE %s :\vVERSION %s Remod \"%s\" %s (build %s %s) %s/%s %s\v", user[0], REMOD_CODENAME, REMOD_VERSION, __DATE__, __TIME__, REMOD_SYSTEM, REMOD_ARCH, REMOD_URL);
ircsend(n, "NOTICE %s :\vVERSION Remod \"%s\" %s (build %s %s) %s/%s %s\v", user[0], REMOD_CODENAME, REMOD_VERSION, __DATE__, __TIME__, REMOD_SYSTEM, REMOD_ARCH, REMOD_URL);

else if(!strcasecmp(q, "PING")) // eh, echo back
ircsend(n, "NOTICE %s :\vPING %s\v", user[0], r);
Expand Down
2 changes: 1 addition & 1 deletion src/mod/version.inc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// version, change on release
#ifndef REMOD_VERSION
#define REMOD_VERSION "v1.1.3"
#define REMOD_VERSION "v1.1.4"
#endif

// codename
Expand Down

0 comments on commit dcb6b82

Please sign in to comment.