diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Src/Modules/newuser.c | 14 |
2 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 4fbcc3ec7..77457937a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-06-19 Peter Stephenson <p.w.stephenson@ntlworld.com> + * 23575: Src/Modules/newuser.c: yet another problem on AIX: + need features_ and enables_ functions. + * unposted, c.f. 23572: Src/modentry.c: bad prototype. * 23571: Src/module.c: AIX definitions weren't right. diff --git a/Src/Modules/newuser.c b/Src/Modules/newuser.c index 5c04a4f13..e19c34df3 100644 --- a/Src/Modules/newuser.c +++ b/Src/Modules/newuser.c @@ -40,6 +40,20 @@ setup_(UNUSED(Module m)) } /**/ +int +features_(Module m, char ***features) +{ + return 1; +} + +/**/ +int +enables_(Module m, int **enables) +{ + return 0; +} + +/**/ static int check_dotfile(const char *dotdir, const char *fname) { |