X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=blob.c;h=adfdb1a999fa53a873959d5af6b96a15ac5f6f58;hp=9973de9544486e4df2f1d9d0a381db9978c4dc6d;hb=dfc7d7868b3b5a4fd6916fd96c12a079db5497c5;hpb=9eb3ef43535eaacd898aed907eeb2f75395af289 diff --git a/blob.c b/blob.c index 9973de95..adfdb1a9 100644 --- a/blob.c +++ b/blob.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2014 Andre Noll + * Copyright (C) 2007 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -66,7 +66,7 @@ static struct osl_column_description blob_cols[] = { /** Define an osl table description for a blob table. */ #define DEFINE_BLOB_TABLE_DESC(table_name) \ - struct osl_table_description table_name ## _table_desc = { \ + static struct osl_table_description table_name ## _table_desc = { \ .name = #table_name, \ .num_columns = NUM_BLOB_COLUMNS, \ .flags = OSL_LARGE_TABLE, \ @@ -295,7 +295,7 @@ static void com_rmblob_callback(struct osl_table *table, int fd, ret2 = para_printf(&rmbd.pb, "no matches, nothing removed\n"); else { ret2 = para_printf(&rmbd.pb, "removed %d blobs\n", pmd.num_matches); - afs_event(BLOB_RENAME, NULL, table); + afs_event(BLOB_REMOVE, NULL, table); } out: if (ret2 >= 0 && rmbd.pb.offset) @@ -645,7 +645,7 @@ static int blob_get_name_and_def_by_row(struct osl_table *table, static int table_name ## _create(const char *dir) \ { \ table_name ## _table_desc.dir = dir; \ - return osl_create_table(&table_name ## _table_desc); \ + return osl(osl_create_table(&table_name ## _table_desc)); \ } static int blob_open(struct osl_table **table,