summaryrefslogtreecommitdiff
path: root/common.cpp
diff options
context:
space:
mode:
authormethodus <methodus@web.de>2012-09-15 23:44:19 +0200
committermethodus <methodus@web.de>2012-09-15 23:44:19 +0200
commit159592eaa3b7ba9135bf01b4015af0d7914805bf (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /common.cpp
parent15139183fdea8f65af5a7dbfd354bcedf5886e80 (diff)
downloadvdr-plugin-upnp-159592eaa3b7ba9135bf01b4015af0d7914805bf.tar.gz
vdr-plugin-upnp-159592eaa3b7ba9135bf01b4015af0d7914805bf.tar.bz2
Master geleert
Diffstat (limited to 'common.cpp')
-rw-r--r--common.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/common.cpp b/common.cpp
deleted file mode 100644
index 513317d..0000000
--- a/common.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * File: common.cpp
- * Author: savop
- *
- * Created on 17. April 2009, 20:53
- */
-
-#include <stdarg.h>
-#include "common.h"
-#include "config.h"
-
-#define MESSAGE_SIZE 256
-
-void message(int Level, const char* , int , const char* Format, ...){
- if(Level && cUPnPConfig::verbosity >= Level){
- va_list ap;
- char Message[MESSAGE_SIZE];
-
- snprintf(Message, sizeof(Message), "[%d] %s", cThread::ThreadId(), Format);
- va_start(ap, Format);
- vsyslog(LOG_NOTICE, Message, ap);
- va_end(ap);
- }
-} \ No newline at end of file