|
From: Pascal B. <pb...@us...> - 2001-11-29 09:16:11
|
Update of /cvsroot/mpkg/mpkg/src
In directory usw-pr-cvs1:/tmp/cvs-serv29455
Modified Files:
rpm.c
Log Message:
Typpo.
Index: rpm.c
===================================================================
RCS file: /cvsroot/mpkg/mpkg/src/rpm.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** rpm.c 2001/11/28 15:29:12 1.4
--- rpm.c 2001/11/29 09:16:06 1.5
***************
*** 300,307 ****
for (i = dist->num_files, file = dist->files; i > 0; i--, file++)
{
! /*
! * Find the username and groupname IDs...
! */
!
pwd = getpwnam (file->user);
grp = getgrnam (file->group);
--- 300,304 ----
for (i = dist->num_files, file = dist->files; i > 0; i--, file++)
{
! /* Find the username and groupname IDs. */
pwd = getpwnam (file->user);
grp = getgrnam (file->group);
***************
*** 310,317 ****
endgrent ();
! /*
! * Copy the file or make the directory or make the symlink as needed...
! */
!
switch (tolower (file->type))
{
--- 307,311 ----
endgrent ();
! /* Copy the file or make the directory or make the symlink as needed. */
switch (tolower (file->type))
{
***************
*** 363,369 ****
}
! /*
! * Build the distribution from the spec file...
! */
if (Verbosity)
puts ("Building RPM binary distribution.");
--- 357,361 ----
}
! /* Build the distribution from the spec file. */
if (Verbosity)
puts ("Building RPM binary distribution.");
***************
*** 405,406 ****
--- 397,399 ----
return 0;
}
+
|