summaryrefslogtreecommitdiff
path: root/accel-pptpd/utils.c
diff options
context:
space:
mode:
authorDmitry Kozlov <xeb@mail.ru>2011-01-05 15:18:59 +0300
committerDmitry Kozlov <xeb@mail.ru>2011-01-05 15:18:59 +0300
commitf28cb1b0a926f1ea98700b7871537ad1793511fd (patch)
treebaf35570bc6b38b6fab5b6524e8f19f58f71e57f /accel-pptpd/utils.c
parent2fdf3586c13a72c36f9530084962e29d57dc0329 (diff)
downloadaccel-ppp-xebd-f28cb1b0a926f1ea98700b7871537ad1793511fd.tar.gz
accel-ppp-xebd-f28cb1b0a926f1ea98700b7871537ad1793511fd.zip
rename accel-pptp to accel-ppp
Diffstat (limited to 'accel-pptpd/utils.c')
-rw-r--r--accel-pptpd/utils.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/accel-pptpd/utils.c b/accel-pptpd/utils.c
deleted file mode 100644
index 491e650..0000000
--- a/accel-pptpd/utils.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <stdio.h>
-
-#include "triton.h"
-#include "utils.h"
-
-#include "memdebug.h"
-
-void __export u_inet_ntoa(in_addr_t addr, char *str)
-{
- sprintf(str, "%i.%i.%i.%i", addr & 0xff, (addr >> 8) & 0xff, (addr >> 16) & 0xff, (addr >> 24) & 0xff);
-}