mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
- Add missing patch
- Fix whitspaces Submitted by: Dave Grochowski <malus.x@gmail.com> (maintainer)
This commit is contained in:
parent
81ae78a943
commit
9763e55d65
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=199965
2 changed files with 43 additions and 1 deletions
|
@ -28,7 +28,7 @@ CONFIGURE_ARGS+=--with-sfsuser=sfs \
|
|||
--disable-uvfs \
|
||||
--with-gmp=${LOCALBASE}
|
||||
|
||||
LIB_DEPENDS+= gmp.7:${PORTSDIR}/math/libgmp4
|
||||
LIB_DEPENDS+= gmp.7:${PORTSDIR}/math/libgmp4
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
|
|
42
security/sfs/files/patch-rex_ptyd.C
Normal file
42
security/sfs/files/patch-rex_ptyd.C
Normal file
|
@ -0,0 +1,42 @@
|
|||
--- rex/ptyd.C.orig 2007-09-23 03:02:05.000000000 -0400
|
||||
+++ rex/ptyd.C 2007-09-23 03:03:45.000000000 -0400
|
||||
@@ -94,13 +94,13 @@
|
||||
return -1;
|
||||
|
||||
vec<char *> argv;
|
||||
- argv.push_back ("sessreg");
|
||||
+ argv.push_back (const_cast<char *> ("sessreg"));
|
||||
if (add)
|
||||
- argv.push_back ("-a");
|
||||
+ argv.push_back (const_cast<char *> ("-a"));
|
||||
else
|
||||
- argv.push_back ("-d");
|
||||
+ argv.push_back (const_cast<char *> ("-d"));
|
||||
|
||||
- argv.push_back ("-l");
|
||||
+ argv.push_back (const_cast<char *> ("-l"));
|
||||
if (tty && !strncmp ("/dev/", tty, 5) && tty[5])
|
||||
tmp = const_cast<char *> (&tty[5]);
|
||||
else {
|
||||
@@ -110,10 +110,10 @@
|
||||
if (tmp)
|
||||
argv.push_back (tmp);
|
||||
else
|
||||
- argv.push_back ("?");
|
||||
+ argv.push_back (const_cast<char *> ("?"));
|
||||
|
||||
if (host) {
|
||||
- argv.push_back ("-h");
|
||||
+ argv.push_back (const_cast<char *> ("-h"));
|
||||
argv.push_back (const_cast<char *> (host));
|
||||
}
|
||||
|
||||
@@ -121,7 +121,7 @@
|
||||
int slot = myttyslot (tty);
|
||||
if (slot > 0) {
|
||||
str s = strbuf () << slot;
|
||||
- argv.push_back ("-s");
|
||||
+ argv.push_back (const_cast<char *> ("-s"));
|
||||
argv.push_back (const_cast<char *> (s.cstr ()));
|
||||
}
|
||||
#endif /* USE_TTYENT */
|
Loading…
Add table
Reference in a new issue