From: Juergen Gross Date: Sun, 11 Oct 2020 12:24:01 +0000 (+0200) Subject: tools/libs/store: add disclaimer to header file regarding ignored options X-Git-Tag: 4.15.0-rc1~667 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=534b3d09958fdc4df64872c2ab19feb4b1eebc5a;p=people%2Fjgross%2Fxen.git tools/libs/store: add disclaimer to header file regarding ignored options Add a disclaimer to the libxenstore header file that all of the open flags (socket only connection, read only connection) are ignored. Signed-off-by: Juergen Gross Acked-by: Wei Liu --- diff --git a/tools/libs/store/include/xenstore.h b/tools/libs/store/include/xenstore.h index 158e69ef83..2b3f69fb61 100644 --- a/tools/libs/store/include/xenstore.h +++ b/tools/libs/store/include/xenstore.h @@ -23,6 +23,7 @@ #define XBT_NULL 0 +/* Following open flags are deprecated and ignored! */ #define XS_OPEN_READONLY (1UL<<0) #define XS_OPEN_SOCKETONLY (1UL<<1)