summaryrefslogtreecommitdiff
path: root/ratox.c
diff options
context:
space:
mode:
Diffstat (limited to 'ratox.c')
-rw-r--r--ratox.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/ratox.c b/ratox.c
index 36a98cf..266524e 100644
--- a/ratox.c
+++ b/ratox.c
@@ -3,8 +3,6 @@
#include <sys/stat.h>
#include <sys/types.h>
-#include <arpa/inet.h>
-
#include <ctype.h>
#include <dirent.h>
#include <errno.h>
@@ -1364,7 +1362,7 @@ confcreate(uint32_t cnum)
if(!c)
eprintf("calloc:");
c->num = cnum;
- sprintf(c->numstr, "%08X", ntohl(c->num));
+ sprintf(c->numstr, "%08X", c->num);
r = mkdir(c->numstr, 0777);
if(r < 0 && errno != EEXIST)
eprintf("mkdir %s:", c->numstr);