diff options
Diffstat (limited to 'src/dbhelper.c')
-rw-r--r-- | src/dbhelper.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/dbhelper.c b/src/dbhelper.c index d0c2795..b183770 100644 --- a/src/dbhelper.c +++ b/src/dbhelper.c @@ -170,9 +170,13 @@ void dbh_format_query_select_from_joined_like(char *query, const char *selection strcpy(query, tmp); } -void dbh_form_query_select_paths(char *query) { +void dbh_form_query_select_paths_with_attributes(char *query) { char tmp[STR_L] = "SELECT "; strcat(tmp, COL_CONFIG_PATH); + strcat(tmp, ","); + strcat(tmp, COL_CONFIG_SECRET); + strcat(tmp, ","); + strcat(tmp, COL_CONFIG_PRIMARY); strcat(tmp, " FROM "); strcat(tmp, TBL_CONFIG); strcat(tmp, ";"); |