Fixing the cast for the result of (getgrent())->gr_gid
authorDavid M. Syzdek <david@syzdek.net>
Fri, 6 Mar 2009 23:03:40 +0000 (14:03 -0900)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Sat, 7 Mar 2009 11:24:05 +0000 (12:24 +0100)
commitf325df1b4578ec6fa0ef2a8b824f93439fcce816
tree673ddc3219bb8dfc1469ba38fa56055b6e0cbeda
parent3f8c823a283afa6d9b3be3ef140cbd63676a82f9
Fixing the cast for the result of (getgrent())->gr_gid

The gr_gid member of struct group is being cast as an int even if
system uses an unsigned int. This patch tests for the use of an
unsigned int for the gr_gid member and casts the value as appropiate.

Created with Arthur Corliss <corliss@corliss@digitalmages.com>.

Signed-off-by: David M. Syzdek <david@syzdek.net>
pp_sys.c