]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
afsutil: fix prototype
authorDerrick Brashear <shadow@your-file-system.com>
Mon, 25 Feb 2013 19:56:37 +0000 (14:56 -0500)
committerStephan Wiesand <stephan.wiesand@desy.de>
Fri, 22 Mar 2013 09:45:21 +0000 (02:45 -0700)
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 <shadow@your-file-system.com>
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Andrew Deason <adeason@sinenomine.net>
Reviewed-by: Stephan Wiesand <stephan.wiesand@desy.de>
src/util/afsutil_prototypes.h

index 17fbde0c9117d5163f6d688926c48615287e3575..191a6657a991f060af11bc1d6ef6c9a6e289d1c3 100644 (file)
@@ -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, ...);