From: Derrick Brashear Date: Mon, 25 Feb 2013 19:56:37 +0000 (-0500) Subject: afsutil: fix prototype X-Git-Tag: upstream/1.6.3^2~135 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=ecb50e7989f7f197f69873780d71f0ea22a1e7bd;p=packages%2Fo%2Fopenafs.git afsutil: fix prototype the prototype for afs_config_get_string was broken. fix it. 1.6 fix only; on master, hcrypto provides this Change-Id: Id7f877c197e44437fe41cb89630ce6e1bf2d6e3d Reviewed-on: http://gerrit.openafs.org/9362 Reviewed-by: Derrick Brashear Tested-by: BuildBot Reviewed-by: Andrew Deason Reviewed-by: Stephan Wiesand --- diff --git a/src/util/afsutil_prototypes.h b/src/util/afsutil_prototypes.h index 17fbde0c9..191a6657a 100644 --- a/src/util/afsutil_prototypes.h +++ b/src/util/afsutil_prototypes.h @@ -40,7 +40,7 @@ typedef struct afs_config_section_struct afs_config_section; extern int afs_config_parse_file_multi(const char *, afs_config_section **); extern int afs_config_parse_file(const char *, afs_config_section **); extern int afs_config_file_free(afs_config_section *s); -extern const char* fs_config_get_string(const afs_config_section *, ...); +extern const char* afs_config_get_string(const afs_config_section *, ...); extern int afs_config_get_bool(const afs_config_section *, ...); extern int afs_config_get_int(const afs_config_section *c, ...);