diff options
| author | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-12-27 16:51:29 +0000 |
|---|---|---|
| committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-12-27 16:51:29 +0000 |
| commit | dca2732b7d9f3eb818b44fe0038b3d3cf3c07fc2 (patch) | |
| tree | 4121d13cdf313ca4aab954ee74717c9d22962873 /libutil/libutil.h | |
| parent | dcb35c061edb54776541bad319d4da3448dcb09b (diff) | |
| download | pw-darwin-dca2732b7d9f3eb818b44fe0038b3d3cf3c07fc2.tar.gz pw-darwin-dca2732b7d9f3eb818b44fe0038b3d3cf3c07fc2.zip | |
- Clean up previous gr_add use malloc instead of calloc
- Fix tinderbox error
Submitted by: db
Diffstat (limited to 'libutil/libutil.h')
| -rw-r--r-- | libutil/libutil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libutil/libutil.h b/libutil/libutil.h index fcd74e1..b1b2405 100644 --- a/libutil/libutil.h +++ b/libutil/libutil.h @@ -167,7 +167,7 @@ int gr_copy(int __ffd, int _tfd, const struct group *_gr, struct group * gr_dup(const struct group *_gr); struct group * - gr_add(struct group *_gr, const char *_newmember); + gr_add(struct group *_gr, char *_newmember); int gr_equal(const struct group *_gr1, const struct group *_gr2); void gr_fini(void); int gr_init(const char *_dir, const char *_master); |
