diff options
-rw-r--r-- | source3/lib/afs_settoken.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/lib/afs_settoken.c b/source3/lib/afs_settoken.c index af15fa8b2e..7aff55fd76 100644 --- a/source3/lib/afs_settoken.c +++ b/source3/lib/afs_settoken.c @@ -248,6 +248,12 @@ bool afs_settoken_str(const char *token_string) #else +int afs_syscall(int subcall, const char *path, int cmd, char *cmarg, int follow) +{ + errno = ENOSYS; + return -1; +} + bool afs_settoken_str(const char *token_string) { return false; |