From: Eric Bollengier Date: Thu, 5 Aug 2021 07:16:58 +0000 (+0200) Subject: Fix incorrect prototype for check_current_fs() after OpenBSD fix X-Git-Tag: Release-11.3.2~416 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0761b6725cd8aa10f6a64433a1c06bd9023c1716;p=thirdparty%2Fbacula.git Fix incorrect prototype for check_current_fs() after OpenBSD fix --- diff --git a/bacula/src/findlib/protos.h b/bacula/src/findlib/protos.h index 110bb4014..c65fbcaa8 100644 --- a/bacula/src/findlib/protos.h +++ b/bacula/src/findlib/protos.h @@ -84,7 +84,7 @@ bool path_list_add(JCR *jcr, uint32_t len, char *fname); bool fstype(FF_PKT *ff_pkt, char *fs, int fslen); bool fstype(char *fname, FF_PKT *ff_pkt, char *fs, int fslen); bool check_current_fs(char *fname, FF_PKT *ff, const char *fstype_name); -bool check_current_fs(char *fname, FF_PKT *ff, uint32_t fstype_magic); +bool check_current_fs(char *fname, FF_PKT *ff, uint64_t fstype_magic); /* from drivetype.c */ bool drivetype(const char *fname, char *fs, int fslen);