fixed error message
authorewt <devnull@localhost>
Tue, 11 Mar 1997 17:10:24 +0000 (17:10 +0000)
committerewt <devnull@localhost>
Tue, 11 Mar 1997 17:10:24 +0000 (17:10 +0000)
CVS patchset: 1483
CVS date: 1997/03/11 17:10:24

lib/install.c

index 0742077..b3123d7 100644 (file)
@@ -913,7 +913,7 @@ static int setFileOwner(char * file, char * owner, char * group,
     } 
        
     if ((gid = gnameToGid(group)) == -1) {
-       rpmError(RPMERR_NOUSER, "user %s does not exist - using root", group);
+       rpmError(RPMERR_NOUSER, "group %s does not exist - using root", group);
        gid = 0;
        /* turn off the sgid bit */
        mode &= ~S_ISGID;