Skip to content

Commit

Permalink
tcpserver.c: fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mbhangui committed May 19, 2024
1 parent 7043f33 commit 825b681
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions ucspi-tcp-x/tcpserver.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* $Id: tcpserver.c,v 1.93 2024-05-09 22:55:54+05:30 mbhangui Exp mbhangui $
* $Id: tcpserver.c,v 1.94 2024-05-19 08:57:35+05:30 Cprogrammer Exp mbhangui $
*/
#include <fcntl.h>
#include <netdb.h>
Expand Down Expand Up @@ -59,7 +59,7 @@
#include "tcpremoteinfo.h"
#include "rules.h"
#include "dns.h"
#ifdef MYSQL_CONNFIG
#ifdef MYSQL_CONFIG
#include "hasmysql.h"
#include "load_mysql.h"
#endif
Expand Down Expand Up @@ -688,7 +688,8 @@ create_table(MYSQL *mysql)
void
connect_db(const char *dbfile)
{
char *x = 0, *m_timeout;
char *x = NULL;
const char *m_timeout;
int fd, i = 0;
unsigned int next, xlen, mysql_timeout;
struct stat st;
Expand Down Expand Up @@ -2008,13 +2009,16 @@ main(int argc, char **argv, char **envp)
void
getversion_tcpserver_c()
{
const char *x = "$Id: tcpserver.c,v 1.93 2024-05-09 22:55:54+05:30 mbhangui Exp mbhangui $";
const char *x = "$Id: tcpserver.c,v 1.94 2024-05-19 08:57:35+05:30 Cprogrammer Exp mbhangui $";

x++;
}

/*
* $Log: tcpserver.c,v $
* Revision 1.94 2024-05-19 08:57:35+05:30 Cprogrammer
* fixed typo
*
* Revision 1.93 2024-05-09 22:55:54+05:30 mbhangui
* fix discarded-qualifier compiler warnings
*
Expand Down

0 comments on commit 825b681

Please sign in to comment.