X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=playlist.c;h=852ffd7a9724471798a6f6a376a2826c0f6961f5;hp=7a912bade5f3890796d2c1a7a672757bee12fcb8;hb=57e0c93e87138fdf1c8793c3d1f3d2880d717548;hpb=49bd626084bf5f48e4d80075258b6da4703752cf diff --git a/playlist.c b/playlist.c index 7a912bad..852ffd7a 100644 --- a/playlist.c +++ b/playlist.c @@ -1,9 +1,12 @@ /* - * Copyright (C) 2007-2008 Andre Noll + * Copyright (C) 2007-2009 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ +#include +#include + #include "para.h" #include "error.h" #include "string.h" @@ -120,8 +123,8 @@ 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 result Contains messages about inconsistencies. * * \return The return value of the underlying call to osl_rbtree_loop(). */ @@ -174,7 +177,7 @@ int playlist_open(char *name) obj.data = name; obj.size = strlen(obj.data); - ret = osl_get_row(playlists_table, BLOBCOL_NAME, &obj, &row); + ret = osl(osl_get_row(playlists_table, BLOBCOL_NAME, &obj, &row)); if (ret < 0) { PARA_NOTICE_LOG("failed to load playlist %s\n", name); return ret;