summaryrefslogtreecommitdiffstats
path: root/src/mad.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mad.cpp')
-rw-r--r--src/mad.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mad.cpp b/src/mad.cpp
index 177b88a..613747b 100644
--- a/src/mad.cpp
+++ b/src/mad.cpp
@@ -20,7 +20,7 @@
#include "Net/ClientConnection.h"
#include "Net/IPAddress.h"
#include "Common/RequestManager.h"
-#include "Common/Request/IdentifyRequest.h"
+#include "Common/Requests/IdentifyRequest.h"
#include <iostream>
#include <unistd.h>
@@ -46,7 +46,7 @@ int main() {
char hostname[256];
gethostname(hostname, sizeof(hostname));
- Mad::Common::Request::IdentifyRequest::send(connection, requestManager, hostname);
+ Mad::Common::Requests::IdentifyRequest::send(connection, requestManager, hostname);
while(connection->isConnected()) {
struct pollfd fd = connection->getPollfd();