Deleted Added
full compact
perform.c (66339) perform.c (67454)
1#ifndef lint
2static const char rcsid[] =
1#ifndef lint
2static const char rcsid[] =
3 "$FreeBSD: head/usr.sbin/pkg_install/info/perform.c 66339 2000-09-25 07:27:05Z marko $";
3 "$FreeBSD: head/usr.sbin/pkg_install/info/perform.c 67454 2000-10-23 07:01:31Z sobomax $";
4#endif
5
6/*
7 * FreeBSD install - a package for the installation and maintainance
8 * of non-core utilities.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions

--- 188 unchanged lines hidden (view full) ---

200 if ((Flags & SHOW_MTREE) && fexists(MTREE_FNAME))
201 show_file("mtree file:\n", MTREE_FNAME);
202 if (Flags & SHOW_PREFIX)
203 show_plist("Prefix(s):\n", &plist, PLIST_CWD);
204 if (Flags & SHOW_FILES)
205 show_files("Files:\n", &plist);
206 if ((Flags & SHOW_SIZE) && installed)
207 show_size("Package Size:\n", &plist);
4#endif
5
6/*
7 * FreeBSD install - a package for the installation and maintainance
8 * of non-core utilities.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions

--- 188 unchanged lines hidden (view full) ---

200 if ((Flags & SHOW_MTREE) && fexists(MTREE_FNAME))
201 show_file("mtree file:\n", MTREE_FNAME);
202 if (Flags & SHOW_PREFIX)
203 show_plist("Prefix(s):\n", &plist, PLIST_CWD);
204 if (Flags & SHOW_FILES)
205 show_files("Files:\n", &plist);
206 if ((Flags & SHOW_SIZE) && installed)
207 show_size("Package Size:\n", &plist);
208 if (Flags & SHOW_ORIGIN)
209 show_origin("Origin:\n", &plist);
208 if (!Quiet)
209 puts(InfoPrefix);
210 }
211 free_plist(&plist);
212 bail:
213 leave_playpen();
214 if (isTMP)
215 unlink(fname);

--- 21 unchanged lines hidden ---
210 if (!Quiet)
211 puts(InfoPrefix);
212 }
213 free_plist(&plist);
214 bail:
215 leave_playpen();
216 if (isTMP)
217 unlink(fname);

--- 21 unchanged lines hidden ---