diff options
author | Loic Blot <loic.blot@unix-experience.fr> | 2015-02-21 13:00:57 +0100 |
---|---|---|
committer | Loic Blot <loic.blot@unix-experience.fr> | 2015-02-21 14:03:27 +0100 |
commit | 3998a1f8f98c9d95a4b91b7a95612c6313081279 (patch) | |
tree | 52a1dfc796173a122fa46955b6fb979271f852b5 /src/network/packethandlers | |
parent | aa31e3c7f31fc00abc64551ebc03ed757311280a (diff) | |
download | minetest-3998a1f8f98c9d95a4b91b7a95612c6313081279.tar.gz minetest-3998a1f8f98c9d95a4b91b7a95612c6313081279.tar.bz2 minetest-3998a1f8f98c9d95a4b91b7a95612c6313081279.zip |
Move sha1.hpp and base64.hpp to util/
Diffstat (limited to 'src/network/packethandlers')
-rw-r--r-- | src/network/packethandlers/client.cpp | 2 | ||||
-rw-r--r-- | src/network/packethandlers/server.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/network/packethandlers/client.cpp b/src/network/packethandlers/client.cpp index 1ce54e38c..1d3a343bf 100644 --- a/src/network/packethandlers/client.cpp +++ b/src/network/packethandlers/client.cpp @@ -19,7 +19,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "client.h" -#include "base64.h" +#include "util/base64.h" #include "clientmedia.h" #include "log.h" #include "map.h" diff --git a/src/network/packethandlers/server.cpp b/src/network/packethandlers/server.cpp index 4627bd5ed..feb8d66be 100644 --- a/src/network/packethandlers/server.cpp +++ b/src/network/packethandlers/server.cpp @@ -20,7 +20,6 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "server.h" #include "log.h" -#include "base64.h" #include "content_abm.h" #include "content_sao.h" #include "emerge.h" @@ -34,6 +33,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "version.h" #include "network/networkprotocol.h" #include "network/serveropcodes.h" +#include "util/base64.h" #include "util/pointedthing.h" #include "util/serialize.h" |