X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=playlist.c;h=9616ed0f0dd6dc9a215e4782375cd6fa081f187d;hb=a7b65e41e2062c44c535f7cb4609e7988fc8ac0d;hp=e8037fbc734f5e095efbb0f025a74c8beb4aebb5;hpb=4ed1b8bcba134e2656eaff91053397064c538bd5;p=paraslash.git diff --git a/playlist.c b/playlist.c index e8037fbc..9616ed0f 100644 --- a/playlist.c +++ b/playlist.c @@ -124,28 +124,16 @@ static int check_playlist(struct osl_row *row, void *data) /** * Check the playlist table for inconsistencies. * - * \param fd The afs socket. - * \param query Unused. + * \param aca This callback ignores ->query. * * \return Standard. Invalid paths are reported, but are not considered an * error. */ -int playlist_check_callback(int fd, __a_unused const struct osl_object *query) +int playlist_check_callback(struct afs_callback_arg *aca) { - int ret; - struct para_buffer pb = { - .max_size = shm_get_shmmax(), - .private_data = &(struct afs_max_size_handler_data) { - .fd = fd, - .band = SBD_OUTPUT - }, - .max_size_handler = afs_max_size_handler, - }; - para_printf(&pb, "checking playlists...\n"); - ret = osl(osl_rbtree_loop(playlists_table, BLOBCOL_ID, &pb, + para_printf(&aca->pbout, "checking playlists...\n"); + return osl(osl_rbtree_loop(playlists_table, BLOBCOL_ID, &aca->pbout, check_playlist)); - flush_and_free_pb(&pb); - return ret; } /**