You are viewing a plain text version of this content. The canonical link for it is here.
Posted to proton@qpid.apache.org by "Tomas Soltys (JIRA)" <ji...@apache.org> on 2015/06/04 09:48:37 UTC

[jira] [Created] (PROTON-899) Unnecessary relative path in include

Tomas Soltys created PROTON-899:
-----------------------------------

             Summary: Unnecessary relative path in include
                 Key: PROTON-899
                 URL: https://issues.apache.org/jira/browse/PROTON-899
             Project: Qpid Proton
          Issue Type: Bug
          Components: proton-c
    Affects Versions: 0.9.1
            Reporter: Tomas Soltys


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.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)