diff options
author | sobomax <sobomax@FreeBSD.org> | 2001-05-17 10:12:45 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2001-05-17 10:12:45 +0000 |
commit | d5e6fbaada3cd9330c6243dac29fae582561a1f4 (patch) | |
tree | b15f79c8749cbd951340ed2e0260441657c84a7c /usr.sbin/pkg_install/add | |
parent | ba39ea389307cc53bf53f9cbdb7bed3753940492 (diff) | |
download | FreeBSD-src-d5e6fbaada3cd9330c6243dac29fae582561a1f4.zip FreeBSD-src-d5e6fbaada3cd9330c6243dac29fae582561a1f4.tar.gz |
Style policy: reformat multiline comments to conform to style(9).
Diffstat (limited to 'usr.sbin/pkg_install/add')
-rw-r--r-- | usr.sbin/pkg_install/add/perform.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.sbin/pkg_install/add/perform.c b/usr.sbin/pkg_install/add/perform.c index f53f3cd..ad5e2f0 100644 --- a/usr.sbin/pkg_install/add/perform.c +++ b/usr.sbin/pkg_install/add/perform.c @@ -117,7 +117,10 @@ pkg_do(char *pkg) fclose(cfile); } else { - strcpy(pkg_fullname, pkg); /* copy for sanity's sake, could remove pkg_fullname */ + strcpy(pkg_fullname, pkg); /* + * Copy for sanity's sake, + * could remove pkg_fullname + */ if (strcmp(pkg, "-")) { if (stat(pkg_fullname, &sb) == FAIL) { warnx("can't stat package file '%s'", pkg_fullname); @@ -324,7 +327,8 @@ pkg_do(char *pkg) } } - /* Test whether to use the old method of passing tokens to installation + /* + * Test whether to use the old method of passing tokens to installation * scripts, and set appropriate variables.. */ |