~ubuntu-branches/ubuntu/raring/gnupg2/raring-proposed

« back to all changes in this revision

Viewing changes to common/status-codes.h

  • Committer: Bazaar Package Importer
  • Author(s): Eric Dorland
  • Date: 2009-09-07 20:38:23 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20090907203823-d7hsk7lnfqoc4yom
Tags: 2.0.13-1
* New upstream release.
* debian/control: Depend instead of Recommend gnupg-agent. (Closes:
  #538947)

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
  "USERID_HINT" "\0"
83
83
  "UNEXPECTED" "\0"
84
84
  "INV_RECP" "\0"
 
85
  "INV_SGNR" "\0"
85
86
  "NO_RECP" "\0"
 
87
  "NO_SGNR" "\0"
86
88
  "ALREADY_SIGNED" "\0"
87
89
  "KEYEXPIRED" "\0"
88
90
  "KEYREVOKED" "\0"
168
170
    662,
169
171
    673,
170
172
    682,
171
 
    690,
172
 
    705,
173
 
    716,
174
 
    727,
175
 
    738,
176
 
    745,
 
173
    691,
 
174
    699,
 
175
    707,
 
176
    722,
 
177
    733,
 
178
    744,
177
179
    755,
178
 
    765,
179
 
    775,
 
180
    762,
 
181
    772,
180
182
    782,
181
 
    796,
182
 
    806,
 
183
    792,
 
184
    799,
 
185
    813,
183
186
    823,
184
 
    839,
185
 
    859,
186
 
    868,
187
 
    882,
188
 
    896,
189
 
    915,
190
 
    929,
191
 
    944,
192
 
    954,
 
187
    840,
 
188
    856,
 
189
    876,
 
190
    885,
 
191
    899,
 
192
    913,
 
193
    932,
 
194
    946,
 
195
    961,
 
196
    971,
193
197
    
194
198
  };
195
199
 
196
200
#define statusstr_msgidxof(code) (0 ? -1 \
197
 
  : ((code >= 0) && (code <= 81)) ? (code - 0) \
 
201
  : ((code >= 0) && (code <= 83)) ? (code - 0) \
198
202
  : -1)