Skip to content

Commit e405bcc

Browse files
committed
refactor (network): rename some exposed network functions to match naming conventions
1 parent 7da12a5 commit e405bcc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/network.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -713,10 +713,10 @@ int cloudsync_network_register (sqlite3 *db, char **pzErrMsg, void *ctx) {
713713
rc = dbutils_register_function(db, "cloudsync_network_cleanup", cloudsync_network_cleanup, 0, pzErrMsg, ctx, NULL);
714714
if (rc != SQLITE_OK) return rc;
715715

716-
rc = dbutils_register_function(db, "cloudsync_set_token", cloudsync_network_set_token, 1, pzErrMsg, ctx, NULL);
716+
rc = dbutils_register_function(db, "cloudsync_network_set_token", cloudsync_network_set_token, 1, pzErrMsg, ctx, NULL);
717717
if (rc != SQLITE_OK) return rc;
718718

719-
rc = dbutils_register_function(db, "cloudsync_set_apikey", cloudsync_network_set_apikey, 1, pzErrMsg, ctx, NULL);
719+
rc = dbutils_register_function(db, "cloudsync_network_set_apikey", cloudsync_network_set_apikey, 1, pzErrMsg, ctx, NULL);
720720
if (rc != SQLITE_OK) return rc;
721721

722722
rc = dbutils_register_function(db, "cloudsync_network_send_changes", cloudsync_network_send_changes, 0, pzErrMsg, ctx, NULL);

0 commit comments

Comments
 (0)