diff options
Diffstat (limited to 'Source')
-rw-r--r-- | Source/charon/jobs/job.c (renamed from Source/charon/job.c) | 2 | ||||
-rw-r--r-- | Source/charon/jobs/job.h (renamed from Source/charon/job.h) | 4 | ||||
-rw-r--r-- | Source/charon/queues/event_queue.h | 2 | ||||
-rw-r--r-- | Source/charon/queues/job_queue.h | 2 | ||||
-rw-r--r-- | Source/charon/receiver.c | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/Source/charon/job.c b/Source/charon/jobs/job.c index 42f4c620c..bb125a10e 100644 --- a/Source/charon/job.c +++ b/Source/charon/jobs/job.c @@ -24,7 +24,7 @@ #include "job.h" -#include "utils/allocator.h" +#include "../utils/allocator.h" mapping_t job_type_m[] = { {INCOMING_PACKET, "INCOMING_PACKET"}, diff --git a/Source/charon/job.h b/Source/charon/jobs/job.h index a2c83001c..f576cba66 100644 --- a/Source/charon/job.h +++ b/Source/charon/jobs/job.h @@ -23,8 +23,8 @@ #ifndef JOB_H_ #define JOB_H_ -#include "types.h" -#include "definitions.h" +#include "../types.h" +#include "../definitions.h" /** * Type of Jobs in Job-Queue diff --git a/Source/charon/queues/event_queue.h b/Source/charon/queues/event_queue.h index 52e4c8153..07c038610 100644 --- a/Source/charon/queues/event_queue.h +++ b/Source/charon/queues/event_queue.h @@ -26,7 +26,7 @@ #include <sys/time.h> #include "../types.h" -#include "../job.h" +#include "../jobs/job.h" /** * @brief Event-Queue used to store timed events. diff --git a/Source/charon/queues/job_queue.h b/Source/charon/queues/job_queue.h index c7ceacae3..1bbc07dda 100644 --- a/Source/charon/queues/job_queue.h +++ b/Source/charon/queues/job_queue.h @@ -24,7 +24,7 @@ #define JOB_QUEUE_H_ #include "../types.h" -#include "../job.h" +#include "../jobs/job.h" /** * @brief Job-Queue diff --git a/Source/charon/receiver.c b/Source/charon/receiver.c index 13b4ecc3a..a45a900ba 100644 --- a/Source/charon/receiver.c +++ b/Source/charon/receiver.c @@ -25,7 +25,7 @@ #include "receiver.h" -#include "job.h" +#include "jobs/job.h" #include "socket.h" #include "packet.h" #include "globals.h" |