Skip to content

Commit

Permalink
Do not fail out if we ask for a provider that does not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
halosghost committed Apr 26, 2016
1 parent 1c33afe commit 711c228
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pbpst_db.c
Expand Up @@ -458,7 +458,7 @@ db_query (const struct pbpst_state * s) {

if ( !prov_pastes ) {
print_err2("No pastes found for", provider);
status = EXIT_FAILURE; goto cleanup;
status = EXIT_SUCCESS; goto cleanup;
}

const char * key;
Expand Down

0 comments on commit 711c228

Please sign in to comment.