Renamed stabber function

This commit is contained in:
James Booth
2015-05-16 01:56:31 +01:00
parent 7e094d8c72
commit 1e327794e9
5 changed files with 6 additions and 4 deletions

2
.gitignore vendored
View File

@@ -38,3 +38,5 @@ src/server/xmppclient.lo
src/client/.dirstamp
src/client/stabber.lo
src/server/log.lo
config.cache
configure.lineno

View File

@@ -8,7 +8,7 @@ sources = \
src/server/log.c src/server/log.h \
src/client/stabber.c src/client/stabber.h
libstabber_la_LDFLAGS = -export-symbols-regex '^stabber_'
libstabber_la_LDFLAGS = -export-symbols-regex '^stbbr_'
libstabber_la_SOURCES = $(sources)
include_HEADERS = stabber.h

View File

@@ -37,5 +37,5 @@ main(int argc , char *argv[])
port = atoi(argv[1]);
}
return stabber_start(port);
return stbbr_start(port);
}

View File

@@ -1,7 +1,7 @@
#include "server/server.h"
int
stabber_start(int port)
stbbr_start(int port)
{
return server_run(port);
}

View File

@@ -1,6 +1,6 @@
#ifndef __H_STABBER
#define __H_STABBER
int stabber_start(int port);
int stbbr_start(int port);
#endif