Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
proton-0.9.1
-
Patch
Description
Files:
proton-c/src/codec/codec.c
proton-c/src/messenger/messenger.c
proton-c/src/transport/transport.c
contain include with relative path:
#include "../log_private.h"
This is causing problem when porting on OpenVMS platform.
I suggest that above include should change to
#include "log_private.h"
There is no need to have "../" since compiler flags already contain include path to directory where log_private.h resides.