X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=libatalk%2Fadouble%2Fad_open.c;h=d5d4e274b33f42dc6d7d780707c5627495ad3a50;hb=c0b6c5214c32ed8dab853791679999ebd3c9a469;hp=d7251d25702d304cb801b696c25e4f95fa2b597c;hpb=d51ce514fe1375a18987b1cda1401f691c30984c;p=netatalk.git diff --git a/libatalk/adouble/ad_open.c b/libatalk/adouble/ad_open.c index d7251d25..d5d4e274 100644 --- a/libatalk/adouble/ad_open.c +++ b/libatalk/adouble/ad_open.c @@ -1,5 +1,5 @@ /* - * $Id: ad_open.c,v 1.44 2009-07-20 23:23:02 didg Exp $ + * $Id: ad_open.c,v 1.45 2009-07-21 13:41:16 didg Exp $ * * Copyright (c) 1999 Adrian Sun (asun@u.washington.edu) * Copyright (c) 1990,1991 Regents of The University of Michigan. @@ -1136,7 +1136,7 @@ static int new_rfork(const char *path, struct adouble *ad, int adflags); #endif /* --------------------------- */ -static int ad_check_size(struct adouble *ad, struct stat *st) +static int ad_check_size(struct adouble *ad _U_, struct stat *st) { if (st->st_size > 0 && st->st_size < AD_DATASZ1) return 1; @@ -1144,7 +1144,7 @@ static int ad_check_size(struct adouble *ad, struct stat *st) } /* --------------------------- */ -static int ad_check_size_sfm(struct adouble *ad, struct stat *st) +static int ad_check_size_sfm(struct adouble *ad _U_, struct stat *st) { if (st->st_size > 0 && st->st_size < AD_SFM_LEN) return 1; @@ -1164,7 +1164,7 @@ static int ad_header_upgrade(struct adouble *ad, char *name) } /* --------------------------- */ -static int ad_header_upgrade_none(struct adouble *ad, char *name) +static int ad_header_upgrade_none(struct adouble *ad _U_, char *name _U_) { return 0; }