mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 13:50:38 -04:00
- Add LICENSE_FILE - Change pkg-descr PR: 196814 Submitted by: Chris Hutchinson <portmaster@bsdforge.com>
39 lines
1.3 KiB
C
39 lines
1.3 KiB
C
--- src/bbcp_Config.C.orig 2015-01-16 13:59:00.000000000 -0800
|
|
+++ src/bbcp_Config.C 2015-01-16 14:04:21.000000000 -0800
|
|
@@ -265,7 +265,7 @@
|
|
|
|
// Process the options
|
|
//
|
|
- while (c=arglist.getopt())
|
|
+ while ((c=arglist.getopt()))
|
|
{ switch(c)
|
|
{
|
|
case 'a': Options |= bbcp_APPEND | bbcp_ORDER;
|
|
@@ -775,8 +775,8 @@
|
|
|
|
// Use the config file, if present
|
|
//
|
|
- if (ConfigFN = getenv("bbcp_CONFIGFN"))
|
|
- {if (retc = Configure(ConfigFN)) return retc;}
|
|
+ if ((ConfigFN = getenv("bbcp_CONFIGFN")))
|
|
+ {if ((retc = Configure(ConfigFN))) return retc;}
|
|
else {
|
|
// Use configuration file in the home directory, if any
|
|
//
|
|
@@ -786,7 +786,7 @@
|
|
strcpy(ConfigFN, homedir); strcat(ConfigFN, cfn);
|
|
if (stat(ConfigFN, &buf))
|
|
{retc = 0; free(ConfigFN); ConfigFN = 0;}
|
|
- else if (retc = Configure(ConfigFN)) return retc;
|
|
+ else if ((retc = Configure(ConfigFN))) return retc;
|
|
}
|
|
|
|
// Establish the FD limit
|
|
@@ -1361,7 +1361,7 @@
|
|
if (*hn == ':' && hn++ && *hn)
|
|
{errno = 0;
|
|
pnum = strtol(hn, (char **)NULL, 10);
|
|
- if (!pnum && errno || pnum > 65535)
|
|
+ if ((!pnum && errno) || pnum > 65535)
|
|
{bbcp_Fmsg("Config",what,"port invalid -", hn); return -1;}
|
|
}
|