diff options
author | jbj <devnull@localhost> | 2001-10-15 03:22:10 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-10-15 03:22:10 +0000 |
commit | d8dc44f36377c59164d19106f0f93843ea5b3a09 (patch) | |
tree | 8f521d9b295dd0e9d05721cfd97f3d8a5b30801d /rpmio/rpmpgp.h | |
parent | 4b67d7621c20e1f2c5aa1ebdf7bb26eb3a6ae0d5 (diff) | |
download | rpm-d8dc44f36377c59164d19106f0f93843ea5b3a09.tar.gz rpm-d8dc44f36377c59164d19106f0f93843ea5b3a09.tar.bz2 rpm-d8dc44f36377c59164d19106f0f93843ea5b3a09.zip |
lclint fiddles to annotate globals.
CVS patchset: 5106
CVS date: 2001/10/15 03:22:10
Diffstat (limited to 'rpmio/rpmpgp.h')
-rw-r--r-- | rpmio/rpmpgp.h | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/rpmio/rpmpgp.h b/rpmio/rpmpgp.h index ddef43ac4..b30e4bc4c 100644 --- a/rpmio/rpmpgp.h +++ b/rpmio/rpmpgp.h @@ -21,7 +21,7 @@ */ typedef const struct pgpValTbl_s { int val; - const char * str; +/*@observer@*/ const char * str; } * pgpValTbl; /** @@ -59,7 +59,7 @@ typedef enum pgpPkt_e { /** */ -/*@unused@*/ +/*@observer@*/ /*@unchecked@*/ /*@unused@*/ extern struct pgpValTbl_s pgpPktTbl[]; /** @@ -131,7 +131,7 @@ typedef enum pgpSigType_e { /** */ -/*@unused@*/ +/*@observer@*/ /*@unchecked@*/ /*@unused@*/ extern struct pgpValTbl_s pgpSigTypeTbl[]; /** @@ -171,7 +171,7 @@ typedef enum pgpPubkeyAlgo_e { /** */ -/*@unused@*/ +/*@observer@*/ /*@unchecked@*/ /*@unused@*/ extern struct pgpValTbl_s pgpPubkeyTbl[]; /** @@ -214,7 +214,7 @@ typedef enum pgpSymkeyAlgo_e { /** */ -/*@unused@*/ +/*@observer@*/ /*@unchecked@*/ /*@unused@*/ extern struct pgpValTbl_s pgpSymkeyTbl[]; /** @@ -240,7 +240,7 @@ typedef enum pgpCompressAlgo_e { /** */ -/*@unused@*/ +/*@observer@*/ /*@unchecked@*/ /*@unused@*/ extern struct pgpValTbl_s pgpCompressionTbl[]; /** @@ -274,7 +274,7 @@ typedef enum pgpHashAlgo_e { /** */ -/*@unused@*/ +/*@observer@*/ /*@unchecked@*/ /*@unused@*/ extern struct pgpValTbl_s pgpHashTbl[]; /** @@ -441,7 +441,7 @@ typedef enum pgpSubType_e { /** */ -/*@unused@*/ +/*@observer@*/ /*@unchecked@*/ /*@unused@*/ extern struct pgpValTbl_s pgpSubTypeTbl[]; /** @@ -841,12 +841,12 @@ typedef struct pgpPktUid_s { /** */ -/*@unused@*/ +/*@observer@*/ /*@unchecked@*/ /*@unused@*/ extern const char * redhatPubKeyDSA; /** */ -/*@unused@*/ +/*@observer@*/ /*@unchecked@*/ /*@unused@*/ extern const char * redhatPubKeyRSA; /** @@ -1012,62 +1012,74 @@ const char * pgpValStr(pgpValTbl vs, byte val) /** */ void pgpPrtVal(const char * pre, pgpValTbl vs, byte val) + /*@globals fileSystem@*/ /*@modifies fileSystem @*/; /** */ int pgpPrtPktSigV3(pgpPkt pkt, const byte *h, unsigned int hlen) + /*@globals fileSystem@*/ /*@modifies fileSystem @*/; /** */ int pgpPrtSubType(const byte *h, unsigned int hlen) + /*@globals fileSystem@*/ /*@modifies fileSystem @*/; /** */ int pgpPrtPktSigV4(pgpPkt pkt, const byte *h, unsigned int hlen) + /*@globals fileSystem@*/ /*@modifies fileSystem @*/; /** */ int pgpPrtPktSig(pgpPkt pkt, const byte *h, unsigned int hlen) + /*@globals fileSystem@*/ /*@modifies fileSystem @*/; /** */ int pgpPrtKeyV3(pgpPkt pkt, const byte *h, unsigned int hlen) + /*@globals fileSystem@*/ /*@modifies fileSystem @*/; /** */ int pgpPrtKeyV4(pgpPkt pkt, const byte *h, unsigned int hlen) + /*@globals fileSystem@*/ /*@modifies fileSystem @*/; /** */ int pgpPrtKey(pgpPkt pkt, const byte *h, unsigned int hlen) + /*@globals fileSystem@*/ /*@modifies fileSystem @*/; /** */ int pgpPrtUserID(pgpPkt pkt, const byte *h, unsigned int hlen) + /*@globals fileSystem@*/ /*@modifies fileSystem @*/; /** */ int pgpPrtComment(pgpPkt pkt, const byte *h, unsigned int hlen) + /*@globals fileSystem@*/ /*@modifies fileSystem @*/; /** */ int pgpPrtPkt(const byte *p) + /*@globals fileSystem@*/ /*@modifies fileSystem @*/; /*@=exportlocal@*/ /** */ int pgpPrtPkts(const byte *pkts, unsigned int plen, struct pgpSig_s *rpmdig, int printing) + /*@globals fileSystem@*/ /*@modifies fileSystem @*/; #ifdef __cplusplus |