Deleted Added
full compact
perform.c (50479) perform.c (62775)
1#ifndef lint
2static const char rcsid[] =
1#ifndef lint
2static const char rcsid[] =
3 "$FreeBSD: head/usr.sbin/pkg_install/info/perform.c 50479 1999-08-28 01:35:59Z peter $";
3 "$FreeBSD: head/usr.sbin/pkg_install/info/perform.c 62775 2000-07-07 13:06:32Z 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

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

196 if ((Flags & SHOW_DEINSTALL) && fexists(POST_DEINSTALL_FNAME))
197 show_file("Post-DeInstall script:\n", POST_DEINSTALL_FNAME);
198 if ((Flags & SHOW_MTREE) && fexists(MTREE_FNAME))
199 show_file("mtree file:\n", MTREE_FNAME);
200 if (Flags & SHOW_PREFIX)
201 show_plist("Prefix(s):\n", &plist, PLIST_CWD);
202 if (Flags & SHOW_FILES)
203 show_files("Files:\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

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

196 if ((Flags & SHOW_DEINSTALL) && fexists(POST_DEINSTALL_FNAME))
197 show_file("Post-DeInstall script:\n", POST_DEINSTALL_FNAME);
198 if ((Flags & SHOW_MTREE) && fexists(MTREE_FNAME))
199 show_file("mtree file:\n", MTREE_FNAME);
200 if (Flags & SHOW_PREFIX)
201 show_plist("Prefix(s):\n", &plist, PLIST_CWD);
202 if (Flags & SHOW_FILES)
203 show_files("Files:\n", &plist);
204 if ((Flags & SHOW_SIZE) && installed)
205 show_size("Package Size:\n", &plist);
204 if (!Quiet)
205 puts(InfoPrefix);
206 }
207 free_plist(&plist);
208 bail:
209 leave_playpen();
210 if (isTMP)
211 unlink(fname);

--- 21 unchanged lines hidden ---
206 if (!Quiet)
207 puts(InfoPrefix);
208 }
209 free_plist(&plist);
210 bail:
211 leave_playpen();
212 if (isTMP)
213 unlink(fname);

--- 21 unchanged lines hidden ---