]> git.cameronkatri.com Git - pw-darwin.git/commitdiff
Fix up setgrent(3) to have a POSIX-compliant prototype.
authorEd Schouten <ed@FreeBSD.org>
Sun, 31 Jul 2016 08:05:15 +0000 (08:05 +0000)
committerEd Schouten <ed@FreeBSD.org>
Sun, 31 Jul 2016 08:05:15 +0000 (08:05 +0000)
Just like with freelocale(3), I haven't been able to find any piece of
code that actually makes use of this function's return value, both in
base and in ports. The reason for this is that FreeBSD seems to be the
only operating system to have such a prototype. This is why I'm deciding
to not use symbol versioning for this.

It does seem that the pw(8) utility depends on the function's typing and
already had a switch in place to toggle between the FreeBSD and POSIX
variant of this function. Clean this up by always expecting the POSIX
variant.

There is also a single port that has a couple of local declarations of
setgrent(3) that need to be patched up. This is in the process of being
fixed.

PR: 211394 (exp-run)

pw/pw_vpw.c
pw/pwupd.h

index 84301134c2681b59159cd6aca10e0942d765e818..58e52946f146ff02b271c9960bf54dbcabeb93a1 100644 (file)
@@ -130,13 +130,10 @@ vendgrent(void)
        }
 }
 
-RET_SETGRENT
+void
 vsetgrent(void)
 {
        vendgrent();
-#if defined(__FreeBSD__)
-       return 0;
-#endif
 }
 
 static struct group *
index 7fecffb7da4b47585bd10f038b5b94ae3a81ba66..daca487835f126757904b1953fa50202e6972009 100644 (file)
 #include <stdbool.h>
 #include <stringlist.h>
 
-#if defined(__FreeBSD__)
-#define        RET_SETGRENT    int
-#else
-#define        RET_SETGRENT    void
-#endif
-
 struct pwf {
        int                 _altdir;
        void              (*_setpwent)(void);
@@ -51,7 +45,7 @@ struct pwf {
        struct passwd * (*_getpwent)(void);
        struct passwd   * (*_getpwuid)(uid_t uid);
        struct passwd   * (*_getpwnam)(const char * nam);
-       RET_SETGRENT      (*_setgrent)(void);
+       void              (*_setgrent)(void);
        void              (*_endgrent)(void);
        struct group  * (*_getgrent)(void);
        struct group  * (*_getgrgid)(gid_t gid);
@@ -141,7 +135,7 @@ struct passwd * vgetpwnam(const char * nam);
 struct group * vgetgrent(void);
 struct group * vgetgrgid(gid_t gid);
 struct group * vgetgrnam(const char * nam);
-RET_SETGRENT   vsetgrent(void);
+void           vsetgrent(void);
 void           vendgrent(void);
 
 void copymkdir(int rootfd, char const * dir, int skelfd, mode_t mode, uid_t uid,