From: Garrett Wollman Date: Fri, 25 May 2012 02:33:04 +0000 (-0400) Subject: afsd (FUSE): Avoid a compilation error and spell it "asprintf" not "asprint". X-Git-Tag: upstream/1.8.0_pre1^2~2365 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=85626606e9ad0aac2c513de56215362b4672acf8;p=packages%2Fo%2Fopenafs.git afsd (FUSE): Avoid a compilation error and spell it "asprintf" not "asprint". Change-Id: I126e9c57877e4969af68dcc4ec1fd1786ecfbd4e Reviewed-on: http://gerrit.openafs.org/7479 Tested-by: BuildBot Reviewed-by: Simon Wilkinson Reviewed-by: Derrick Brashear --- diff --git a/src/afsd/afsd_fuse.c b/src/afsd/afsd_fuse.c index 23653080c..03a801ac9 100644 --- a/src/afsd/afsd_fuse.c +++ b/src/afsd/afsd_fuse.c @@ -77,7 +77,7 @@ afs_path(const char *apath) static const char prefix[] = "/afs/"; char *path; - asprint(&path, "%s%s", prefix, apath); + asprintf(&path, "%s%s", prefix, apath); return path; }