From 711c2289704ba336d7f3665e9fee97cda153e697 Mon Sep 17 00:00:00 2001 From: halosghost Date: Tue, 26 Apr 2016 17:06:57 -0500 Subject: [PATCH] Do not fail out if we ask for a provider that does not exist --- src/pbpst_db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pbpst_db.c b/src/pbpst_db.c index cbe234f..10e6ef5 100644 --- a/src/pbpst_db.c +++ b/src/pbpst_db.c @@ -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;