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 <buildbot@rampaginggeek.com>
Reviewed-by: Simon Wilkinson <simonxwilkinson@gmail.com>
Reviewed-by: Derrick Brashear <shadow@dementix.org>
This commit is contained in:
Garrett Wollman 2012-05-24 22:33:04 -04:00 committed by Derrick Brashear
parent 0e81db38b5
commit 85626606e9

View File

@ -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;
}