157 |
if( gpgme_data_get_type( keydata ) == GPGME_DATA_TYPE_NONE ) |
if( gpgme_data_get_type( keydata ) == GPGME_DATA_TYPE_NONE ) |
158 |
err = mk_error( General_Error ); |
err = mk_error( General_Error ); |
159 |
else if( gpgme_get_process_rc( ctx ) ) |
else if( gpgme_get_process_rc( ctx ) ) |
160 |
err = mk_error( Interal_GPG_Problem ); |
err = mk_error( Internal_GPG_Problem ); |
161 |
} |
} |
162 |
return err; |
return err; |
163 |
} /* gpgme_op_export */ |
} /* gpgme_op_export */ |
173 |
gpgme_wait( ctx, 1 ); |
gpgme_wait( ctx, 1 ); |
174 |
ctx->pending = 0; |
ctx->pending = 0; |
175 |
if( gpgme_get_process_rc( ctx ) ) |
if( gpgme_get_process_rc( ctx ) ) |
176 |
err = mk_error( Interal_GPG_Problem ); |
err = mk_error( Internal_GPG_Problem ); |
177 |
} |
} |
178 |
|
|
179 |
return err; |
return err; |