diff options
| author | 2023-02-02 04:55:58 +0100 | |
|---|---|---|
| committer | 2023-02-02 04:55:58 +0100 | |
| commit | 108ed072e299da7ce6fb3666f9bb3ce222fa8a1a (patch) | |
| tree | b9f3e410fbfd81fb7189da2d1ffe3d23b17df58f /activitypub.c | |
| parent | process_queue() has been renamed to process_user_queue(). (diff) | |
| download | snac2-108ed072e299da7ce6fb3666f9bb3ce222fa8a1a.tar.gz snac2-108ed072e299da7ce6fb3666f9bb3ce222fa8a1a.tar.xz snac2-108ed072e299da7ce6fb3666f9bb3ce222fa8a1a.zip | |
Renamed process_queue_item() to process_user_queue_item().
Diffstat (limited to 'activitypub.c')
| -rw-r--r-- | activitypub.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activitypub.c b/activitypub.c index 3249e80..aea353b 100644 --- a/activitypub.c +++ b/activitypub.c | |||
| @@ -1065,7 +1065,7 @@ int send_email(char *msg) | |||
| 1065 | } | 1065 | } |
| 1066 | 1066 | ||
| 1067 | 1067 | ||
| 1068 | void process_queue_item(snac *snac, xs_dict *q_item) | 1068 | void process_user_queue_item(snac *snac, xs_dict *q_item) |
| 1069 | /* processes an item from the queue */ | 1069 | /* processes an item from the queue */ |
| 1070 | { | 1070 | { |
| 1071 | char *type; | 1071 | char *type; |
| @@ -1176,7 +1176,7 @@ void process_user_queue(snac *snac) | |||
| 1176 | continue; | 1176 | continue; |
| 1177 | } | 1177 | } |
| 1178 | 1178 | ||
| 1179 | process_queue_item(snac, q_item); | 1179 | process_user_queue_item(snac, q_item); |
| 1180 | } | 1180 | } |
| 1181 | } | 1181 | } |
| 1182 | 1182 | ||