X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=playlist.c;h=dd4371578179031403ed04274f0a0e7f872294c5;hb=4744d937c4160898d1fe151257606430750e580c;hp=d1e16f8e131814f5c70b53239b747077f65d0c1e;hpb=6494f4bfddde1b9e06c4cb8bcd3acf7b9cc762f1;p=paraslash.git diff --git a/playlist.c b/playlist.c index d1e16f8e..dd437157 100644 --- a/playlist.c +++ b/playlist.c @@ -1,10 +1,12 @@ /* - * Copyright (C) 2007-2009 Andre Noll + * Copyright (C) 2007-2012 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ +#include #include + #include "para.h" #include "error.h" #include "string.h" @@ -129,9 +131,11 @@ static int check_playlist(struct osl_row *row, void *data) void playlist_check_callback(int fd, __a_unused const struct osl_object *query) { struct para_buffer pb = { - .max_size = SHMMAX, - .private_data = &fd, - .max_size_handler = pass_buffer_as_shm + .max_size = shm_get_shmmax(), + .private_data = &(struct afs_max_size_handler_data) { + .fd = fd, + }, + .max_size_handler = afs_max_size_handler, }; int ret = para_printf(&pb, "checking playlists...\n");