Mock Version: 1.4.16 Mock Version: 1.4.16 ENTER ['do_with_status'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target x86_64 --nodeps /builddir/build/SPECS/flow-tools.spec'], chrootPath='/var/lib/mock/f32-build-17324560-1245918/root'env={'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'}shell=Falselogger=timeout=172800uid=1000gid=425user='mockbuild'nspawn_args=[]unshare_net=TrueprintOutput=False) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target x86_64 --nodeps /builddir/build/SPECS/flow-tools.spec'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'} and shell False Building target platforms: x86_64 Building for target x86_64 setting SOURCE_DATE_EPOCH=1566345600 Wrote: /builddir/build/SRPMS/flow-tools-0.68.5.1-28.fc32.src.rpm Child return code was: 0 ENTER ['do_with_status'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target x86_64 --nodeps /builddir/build/SPECS/flow-tools.spec'], chrootPath='/var/lib/mock/f32-build-17324560-1245918/root'env={'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'}shell=Falselogger=timeout=172800uid=1000gid=425user='mockbuild'nspawn_args=[]unshare_net=TrueprintOutput=False) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target x86_64 --nodeps /builddir/build/SPECS/flow-tools.spec'] with env {'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'} and shell False Building target platforms: x86_64 Building for target x86_64 setting SOURCE_DATE_EPOCH=1566345600 Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.mBMNCz + umask 022 + cd /builddir/build/BUILD + cd /builddir/build/BUILD + rm -rf flow-tools-0.68.5.1 + /usr/bin/bzip2 -dc /builddir/build/SOURCES/flow-tools-0.68.5.1.tar.bz2 + /usr/bin/tar -xof - + STATUS=0 + '[' 0 -ne 0 ']' + cd flow-tools-0.68.5.1 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + echo 'Patch #0 (flow-werror-fix.patch):' + /usr/bin/patch --no-backup-if-mismatch -p1 --fuzz=0 + sed -i '1s|^#!.*python|#!/usr/bin/python3|' bin/flow-log2rrd bin/flow-rpt2rrd bin/flow-rptfmt + 2to3 --write --nobackups bin/flow-log2rrd bin/flow-rpt2rrd bin/flow-rptfmt BUILDSTDERR: RefactoringTool: Skipping optional fixer: buffer BUILDSTDERR: RefactoringTool: Skipping optional fixer: idioms BUILDSTDERR: RefactoringTool: Skipping optional fixer: set_literal BUILDSTDERR: RefactoringTool: Skipping optional fixer: ws_comma BUILDSTDERR: RefactoringTool: Refactored bin/flow-log2rrd BUILDSTDERR: RefactoringTool: Refactored bin/flow-rpt2rrd BUILDSTDERR: RefactoringTool: Refactored bin/flow-rptfmt Patch #0 (flow-werror-fix.patch): patching file lib/fterr.c --- bin/flow-log2rrd (original) +++ bin/flow-log2rrd (refactored) @@ -41,8 +41,8 @@ elif fields[4][5:12] == 'capture' : name='capture' else : - raise ValueError, "Expecting flow-capture or flow-fanout logs, got %s" %\ - fields[4] + raise ValueError("Expecting flow-capture or flow-fanout logs, got %s" %\ + fields[4]) tv = {} for f in fields : @@ -66,7 +66,7 @@ if not os.access(rrdFile, os.F_OK) : - print 'Creating RRD ', rrdFile + print('Creating RRD ', rrdFile) if name == 'capture' : --- bin/flow-rpt2rrd (original) +++ bin/flow-rpt2rrd (refactored) @@ -156,13 +156,13 @@ # exists? if not os.access(rrdFile, os.F_OK): - print "Creating RRD", rrdFile + print("Creating RRD", rrdFile) rrdParams = [] t = str(int(self.start_time) - 300) rrdParams.append('--start') rrdParams.append(t) - for i in use_fields_index.keys(): + for i in list(use_fields_index.keys()): rrdParams.append("DS:%s:ABSOLUTE:600:U:U" % use_fields_index[i]) if (self.rrd_5min): rrdParams.append('RRA:AVERAGE:0.5:1:%s' % self.rrd_5min) @@ -179,18 +179,18 @@ rrdtool.create(rrdFile, *rrdParams) if self.debug: - print >>sys.stderr, string.join(rrdParams,' ') + print(string.join(rrdParams,' '), file=sys.stderr) # foreach value update = self.start_time - for i in use_fields_index.keys(): + for i in list(use_fields_index.keys()): update = "%s:%s" % (update,vals[i]) if self.debug: - print >>sys.stderr, "update", update + print("update", update, file=sys.stderr) if (self.verbose): - print "Updating RRD", rrdFile + print("Updating RRD", rrdFile) rrdtool.update(rrdFile,update) @@ -249,16 +249,16 @@ # start time must be set by now if (self.start_time == 0): - raise ValueError, "Start time not found, make sure flow-report is including the header" + raise ValueError("Start time not found, make sure flow-report is including the header") # load symbol tables if self.mapsym == 1: - for i in self.field_keys.keys(): + for i in list(self.field_keys.keys()): self.sym[i] = ftsym(self.field_names[i]) # convert use_fields to use_fields_index for easier access self.use_fields_index = {} - for i in self.use_fields.keys(): + for i in list(self.use_fields.keys()): if self.use_fields[i] and self.field_names2.get(i,'x') != 'x': self.use_fields_index[self.field_names2[i]] = i @@ -271,7 +271,7 @@ # combine the key fields to form one key k = '' - for i in self.field_keys.keys(): + for i in list(self.field_keys.keys()): # try a symbol table lookup if self.mapsym == 1: t = self.sym[i].findbyval(splt[i]) @@ -301,9 +301,9 @@ # keys which were not available in the report also need to be # updated with 0 values. - for i in xrange(len(splt)): + for i in range(len(splt)): splt[i] = 0 - for x in self.use_key_names.keys(): + for x in list(self.use_key_names.keys()): if not (self.use_key_names[x] & 2): self.update_rrd(x, splt, self.use_fields_index) @@ -345,13 +345,13 @@ elif o == '-v': opt_verbose = 1 elif o == '-h': - print "Usage: flow-rpt2rrd [-nv] [-k keys] [-K keyfile] [-f fields]" - print " [-p rrd_path] [-P fname_postfix]" - print " [-r rrd_storage 5_min:30_min:2_hr:1_day ]" + print("Usage: flow-rpt2rrd [-nv] [-k keys] [-K keyfile] [-f fields]") + print(" [-p rrd_path] [-P fname_postfix]") + print(" [-r rrd_storage 5_min:30_min:2_hr:1_day ]") sys.exit(0) if opt_keys == '': - print >>sys.stderr, "Keys must be defined with -k or -K." + print("Keys must be defined with -k or -K.", file=sys.stderr) sys.exit(1) ftrrd = ftrpt2rrd() --- bin/flow-rptfmt (original) +++ bin/flow-rptfmt (refactored) @@ -110,52 +110,52 @@ def _fmt_summary_detail(self): if self.got_totals: - print "Ignores: %s" % self.field_vals['ignores'] - print "Total Flows: %s" % self.field_vals['flows'] - print "Total Octets: %s" % self.field_vals['octets'] - print "Total Packets: %s" % self.field_vals['packets'] - print "Total Duration (ms): %s" % self.field_vals['duration'] - print "Real Time: %s" % self.field_vals['time_real'] - print "Average Flow Time: %s" % self.field_vals['aflowtime'] - print "Average Packets/Second: %s" % self.field_vals['aps'] - print "Average Flows/Second: %s" % self.field_vals['afs'] - print "Average Packets/Flow: %s" % self.field_vals['apf'] - print "Flows/Second: %s" % self.field_vals['fps'] - print "Flows/Second (real): %s" % self.field_vals['fps_real'] - - print "\nAverage IP packet size distribution:" - print "\n 1-32 64 96 128 160 192 224 256 288 320 352 384 416 448 480\n ", + print("Ignores: %s" % self.field_vals['ignores']) + print("Total Flows: %s" % self.field_vals['flows']) + print("Total Octets: %s" % self.field_vals['octets']) + print("Total Packets: %s" % self.field_vals['packets']) + print("Total Duration (ms): %s" % self.field_vals['duration']) + print("Real Time: %s" % self.field_vals['time_real']) + print("Average Flow Time: %s" % self.field_vals['aflowtime']) + print("Average Packets/Second: %s" % self.field_vals['aps']) + print("Average Flows/Second: %s" % self.field_vals['afs']) + print("Average Packets/Flow: %s" % self.field_vals['apf']) + print("Flows/Second: %s" % self.field_vals['fps']) + print("Flows/Second (real): %s" % self.field_vals['fps_real']) + + print("\nAverage IP packet size distribution:") + print("\n 1-32 64 96 128 160 192 224 256 288 320 352 384 416 448 480\n ", end=' ') for x in range(7,22): - print ("%-3.3f" % float(self.field_vals[x]))[1:], - print "\n\n 512 544 576 1024 1536 2048 2560 3072 3584 4096 4608\n ", + print(("%-3.3f" % float(self.field_vals[x]))[1:], end=' ') + print("\n\n 512 544 576 1024 1536 2048 2560 3072 3584 4096 4608\n ", end=' ') for x in range(22,33): - print ("%-3.3f" % float(self.field_vals[x]))[1:], - - print "\n\nPackets per flow distribution:" - print "\n 1 2 4 8 12 16 20 24 28 32 36 40 44 48 52\n ", + print(("%-3.3f" % float(self.field_vals[x]))[1:], end=' ') + + print("\n\nPackets per flow distribution:") + print("\n 1 2 4 8 12 16 20 24 28 32 36 40 44 48 52\n ", end=' ') for x in range(33,48): - print ("%-3.3f" % float(self.field_vals[x]))[1:], - print "\n\n 60 100 200 300 400 500 600 700 800 900 >900\n ", + print(("%-3.3f" % float(self.field_vals[x]))[1:], end=' ') + print("\n\n 60 100 200 300 400 500 600 700 800 900 >900\n ", end=' ') for x in range(48,59): - print ("%-3.3f" % float(self.field_vals[x]))[1:], - - print "\n\nOctets per flow distribution:" - print "\n 32 64 128 256 512 1280 2048 2816 3584 4352 5120 5888 6656 7424 8192\n ", + print(("%-3.3f" % float(self.field_vals[x]))[1:], end=' ') + + print("\n\nOctets per flow distribution:") + print("\n 32 64 128 256 512 1280 2048 2816 3584 4352 5120 5888 6656 7424 8192\n ", end=' ') for x in range(59,74): - print ("%-3.3f" % float(self.field_vals[x]))[1:], - print "\n\n 8960 9728 10496 11264 12032 12800 13568 14336 15104 15872 >15872\n ", - print ("%-3.3f" % float(self.field_vals[74]))[1:], + print(("%-3.3f" % float(self.field_vals[x]))[1:], end=' ') + print("\n\n 8960 9728 10496 11264 12032 12800 13568 14336 15104 15872 >15872\n ", end=' ') + print(("%-3.3f" % float(self.field_vals[74]))[1:], end=' ') for x in range(75,85): - print ("%-3.3f " % float(self.field_vals[x]))[1:], - - print "\n\nFlow Time Distribution (ms):" - print "\n 10 50 100 200 500 1000 2000 3000 4000 5000 6000 7000 8000 9000 10000\n ", + print(("%-3.3f " % float(self.field_vals[x]))[1:], end=' ') + + print("\n\nFlow Time Distribution (ms):") + print("\n 10 50 100 200 500 1000 2000 3000 4000 5000 6000 7000 8000 9000 10000\n ", end=' ') for x in range(85,100): - print ("%-3.3f" % float(self.field_vals[x]))[1:], - print "\n\n 12000 14000 16000 18000 20000 22000 24000 26000 28000 30000 >30000\n ", + print(("%-3.3f" % float(self.field_vals[x]))[1:], end=' ') + print("\n\n 12000 14000 16000 18000 20000 22000 24000 26000 28000 30000 >30000\n ", end=' ') for x in range(100,111): - print ("%-3.3f " % float(self.field_vals[x]))[1:], - print + print(("%-3.3f " % float(self.field_vals[x]))[1:], end=' ') + print() # # @@ -168,16 +168,16 @@ line = int(self.max_lines) for x in self.field_iter: - for y in xrange(self.field_total): + for y in range(self.field_total): if self.field_display[y]: # print "x=",x,"y=",y,"#" i = self.field_avals[x][y] - print i.ljust(self.field_lens[y]), + print(i.ljust(self.field_lens[y]), end=' ') if line: line = line - 1 if not line: break - print + print() else: @@ -194,23 +194,23 @@ for i in self.header_info: if i[0:7] == '# rec1:': break - print i; - - print "# ", sys.argv + print(i); + + print("# ", sys.argv) # summary-detail is a special format if self.display_summary_detail != 1: - for x in xrange(self.field_total): + for x in range(self.field_total): if self.field_display[x]: i = self.field_names[x] l = self.field_lens[x] - print i.ljust(l), - print + print(i.ljust(l), end=' ') + print() # # # def fmt_ascii_footer(self) : - print "\n", + print("\n", end=' ') # # HTML @@ -220,20 +220,20 @@ if self.display_header: - print '''
''' 
+      print('''
''') 
       for i in self.header_info:
         if i[0:7] == '#rec1:':
           break
-        print i
-      print '''
''' - - print "" - print "" + print(i) + print('''''') + + print("
") + print("") if self.display_summary_detail != 1: - for x in xrange(self.field_total): + for x in range(self.field_total): if self.field_display[x]: - print " ''' - print '''''' + print(" ''') + print('''''') # # @@ -245,26 +245,26 @@ line = int(self.max_lines) for x in self.field_iter: - print "" - for y in xrange(self.field_total): + print("") + for y in range(self.field_total): if self.field_display[y]: i = self.field_avals[x][y] - print " ''' + print(" ''') if line: line = line - 1 if not line: break - print '''''' + print('''''') else: - print '''
''' 
+      print('''
''') 
       self._fmt_summary_detail()
-      print '''
''' + print('''
''') # # # def fmt_html_footer(self) : - print '''
", self.field_names[x], '''
", self.field_names[x], '''
", i, '''", i, '''
''' + print('''''') # @@ -348,7 +348,7 @@ splt = string.split(line, ',') - for i in xrange(self.field_total): + for i in range(self.field_total): if len(splt[i]) > self.field_lens[i]: BUILDSTDERR: RefactoringTool: Files that were modified: BUILDSTDERR: RefactoringTool: bin/flow-log2rrd BUILDSTDERR: RefactoringTool: bin/flow-rpt2rrd BUILDSTDERR: RefactoringTool: bin/flow-rptfmt + sed -i '1s|^#!.*perl|#!/usr/bin/perl|' utils/Makefile.am utils/Makefile.in utils/asn2c utils/gasn utils/gprot utils/gserv + sed -i s/my_init/mysql_init/g configure + RPM_EC=0 BUILDSTDERR: ++ jobs -p + exit 0 self.field_lens[i] = len(splt[i]) @@ -365,7 +365,7 @@ break; # default to sequentially as read - self.field_iter = range(self.recno) + self.field_iter = list(range(self.recno)) # # @@ -378,10 +378,10 @@ # figure out which fields are okay to print if self.field_use['all'] == 1: - for x in xrange(self.field_total): + for x in range(self.field_total): self.field_display[x] = 1 else: - for x in xrange(self.field_total): + for x in range(self.field_total): self.field_display[x] = self.field_use.get(self.field_names[x],0) # @@ -405,8 +405,8 @@ self.field_iter.sort(lambda a,b: cmp(self.field_avals[a][i], self.field_avals[b][i])) else: - self.field_iter.sort(lambda a,b: cmp(long(self.field_avals[a][i]), - long(self.field_avals[b][i]))) + self.field_iter.sort(lambda a,b: cmp(int(self.field_avals[a][i]), + int(self.field_avals[b][i]))) elif sort_field[0] == '-': @@ -419,8 +419,8 @@ self.field_avals[b][i])) else: - self.field_iter.sort(lambda b,a: cmp(long(self.field_avals[a][i]), - long(self.field_avals[b][i]))) + self.field_iter.sort(lambda b,a: cmp(int(self.field_avals[a][i]), + int(self.field_avals[b][i]))) # # @@ -428,7 +428,7 @@ def mapsym(self): # foreach key field try to map in symbols - for i in self.field_keys.keys(): + for i in list(self.field_keys.keys()): if self.field_display[i] != 1: continue n = self.field_names[i] @@ -445,14 +445,14 @@ def percent(self): # foreach field - for i in xrange(self.field_total): + for i in range(self.field_total): # skip key fields if self.field_keys.get(i,0) == 1: continue # for each value for the field self.field_totals[i] = 0 for j in self.field_iter: - self.field_totals[i] += long(self.field_avals[j][i]) + self.field_totals[i] += int(self.field_avals[j][i]) for j in self.field_iter: self.field_avals[j][i] = "%5.6f" % (float(self.field_avals[j][i]) / float(self.field_totals[i]) * 100) # readjust field len @@ -515,13 +515,13 @@ elif o == '-s': opt_sort_field = v elif o == '-h': - print "Usage: flow-rptfmt [-hHnp] [-a alarm] [-f format] [-F display_fields]" - print " [-m max_lines] [-s sort_field]" + print("Usage: flow-rptfmt [-hHnp] [-a alarm] [-f format] [-F display_fields]") + print(" [-m max_lines] [-s sort_field]") sys.exit(0) def sig_alarm(sig, stack): - print "flow-rptfmt exceeded CPU time, consider running report offline." + print("flow-rptfmt exceeded CPU time, consider running report offline.") sys.exit(0) signal.signal(signal.SIGALRM, sig_alarm) Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.VO0Okz + umask 022 + cd /builddir/build/BUILD + cd flow-tools-0.68.5.1 + CFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection' + export CFLAGS + CXXFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection' + export CXXFLAGS + FFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -I/usr/lib64/gfortran/modules' + export FFLAGS + FCFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -I/usr/lib64/gfortran/modules' + export FCFLAGS + LDFLAGS='-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld' + export LDFLAGS + '[' 1 = 1 ']' BUILDSTDERR: +++ dirname ./configure BUILDSTDERR: ++ find . -name config.guess -o -name config.sub + for i in $(find $(dirname ./configure) -name config.guess -o -name config.sub) BUILDSTDERR: ++ basename ./config.guess + '[' -f /usr/lib/rpm/redhat/config.guess ']' + /usr/bin/rm -f ./config.guess BUILDSTDERR: ++ basename ./config.guess + /usr/bin/cp -fv /usr/lib/rpm/redhat/config.guess ./config.guess + for i in $(find $(dirname ./configure) -name config.guess -o -name config.sub) BUILDSTDERR: ++ basename ./config.sub + '[' -f /usr/lib/rpm/redhat/config.sub ']' + /usr/bin/rm -f ./config.sub BUILDSTDERR: ++ basename ./config.sub + /usr/bin/cp -fv /usr/lib/rpm/redhat/config.sub ./config.sub + '[' 1 = 1 ']' + '[' x '!=' 'x-Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld' ']' BUILDSTDERR: ++ find . -name ltmain.sh + for i in $(find . -name ltmain.sh) + /usr/bin/sed -i.backup -e 's~compiler_flags=$~compiler_flags="-Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld"~' ./ltmain.sh + ./configure --build=x86_64-redhat-linux-gnu --host=x86_64-redhat-linux-gnu --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --localstatedir=/var/flow-tools --sysconfdir=/etc/flow-tools --enable-static=no --with-mysql --with-postgresql '/usr/lib/rpm/redhat/config.guess' -> './config.guess' '/usr/lib/rpm/redhat/config.sub' -> './config.sub' checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking build system type... x86_64-redhat-linux-gnu checking host system type... x86_64-redhat-linux-gnu checking how to print strings... printf checking for style of include used by make... GNU checking for x86_64-redhat-linux-gnu-gcc... no checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking dependency style of gcc... none checking for a sed that does not truncate output... /usr/bin/sed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... -r checking for x86_64-redhat-linux-gnu-objdump... no checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for x86_64-redhat-linux-gnu-ar... no checking for ar... ar checking for x86_64-redhat-linux-gnu-strip... no checking for strip... strip checking for x86_64-redhat-linux-gnu-ranlib... no checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from gcc object... ok checking how to run the C preprocessor... gcc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for x86_64-redhat-linux-gnu-gcc... gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) none checking whether make sets $(MAKE)... (cached) yes checking for bison... bison -y checking for flex... flex checking lex output file root... lex.yy checking lex library... none needed checking whether yytext is a pointer... no checking for pg_config... /usr/bin/pg_config checking for PostgreSQL libraries... yes checking for mysql_init in -lmysqlclient... yes checking for main in -ly... no BUILDSTDERR: checking for zlibVersion in -lz... + sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool + sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool + /usr/bin/make -O -j6 V=1 VERBOSE=1 'RPM_OPT_FLAGS=-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection' BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from ftprof.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ yes checking for allow_severity in -lwrap... no checking whether gcc accepts PIE flags... yes checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for ANSI C header files... (cached) yes checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking features.h usability... yes checking features.h presence... yes checking for features.h... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking malloc.h usability... yes checking malloc.h presence... yes checking for malloc.h... yes checking for string.h... (cached) yes checking for strings.h... (cached) yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking syslog.h usability... yes checking syslog.h presence... yes checking for syslog.h... yes checking for unistd.h... (cached) yes checking for sin_len in sockaddr_in ... no checking for an ANSI C-conforming const... yes checking for off_t... yes checking for pid_t... yes checking for size_t... yes checking for struct stat.st_rdev... yes checking whether time.h and sys/time.h may both be included... yes checking whether struct tm is in sys/time.h or time.h... time.h checking for stdlib.h... (cached) yes checking for unistd.h... (cached) yes checking for sys/param.h... yes checking for getpagesize... yes checking for working mmap... yes checking for working alloca.h... yes checking for alloca... yes checking return type of signal handlers... void checking for gethostbyname in -lnsl... no checking for socket in -lsocket... no checking for gethostname... yes checking for gettimeofday... yes checking for select... yes checking for socket... yes checking for strdup... yes checking for strtoul... yes checking for timelocal... yes checking for sigaction... yes checking for strsep... yes checking for strerror... yes checking for strtoull... yes checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no configure: creating ./config.status config.status: creating lib/Makefile config.status: creating src/Makefile config.status: creating bin/Makefile config.status: creating Makefile config.status: creating docs/Makefile config.status: creating configs/Makefile config.status: creating utils/Makefile config.status: creating lib/ftconfig.h config.status: executing depfiles commands config.status: executing libtool commands Making all in lib /usr/bin/make all-am make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftprof.lo `test -f 'ftprof.c' || echo './'`ftprof.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftprof.c -fPIC -DPIC -o .libs/libft_la-ftprof.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' BUILDSTDERR: /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardeIn file included from /usr/include/inttypes.h:25, BUILDSTDERR: from ftinclude.h:7, BUILDSTDERR: from bit1024.c:29: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: In file included from /usr/include/inttypes.h:25, BUILDSTDERR: from ftinclude.h:7, BUILDSTDERR: from fmt.c:29: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from ftencode.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: In file included from /usr/include/inttypes.h:25, BUILDSTDERR: from ftinclude.h:7, BUILDSTDERR: from support.c:29: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ ned-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-bit1024.lo `test -f 'bit1024.c' || echo './'`bit1024.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c bit1024.c -fPIC -DPIC -o .libs/libft_la-bit1024.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-fmt.lo `test -f 'fmt.c' || echo './'`fmt.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c fmt.c -fPIC -DPIC -o .libs/libft_la-fmt.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftencode.lo `test -f 'ftencode.c' || echo './'`ftencode.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftencode.c -fPIC -DPIC -o .libs/libft_la-ftencode.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-support.lo `test -f 'support.c' || echo './'`support.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c support.c -fPIC -DPIC -o .libs/libft_la-support.o BUILDSTDERR: maIn file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from fttlv.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from ftswap.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftswap.c: In function 'ftpdu_swap': BUILDSTDERR: ftswap.c:43:20: warning: variable 'agg_version' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 43 | char agg_method, agg_version; BUILDSTDERR: | ^~~~~~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from ftmap.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftmap.c: In function 'ftmap_ifalias_free': BUILDSTDERR: ftmap.c:210:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation] BUILDSTDERR: 210 | if (ftmia->ifIndex_list) BUILDSTDERR: | ^~ BUILDSTDERR: ftmap.c:213:5: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' BUILDSTDERR: 213 | free (ftmia); BUILDSTDERR: | ^~~~ BUILDSTDERR: In file included from /usr/include/inttypes.h:25, BUILDSTDERR: from ftinclude.h:7, BUILDSTDERR: from ftio.c:29: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftio.c: In function 'ftio_rec_swapfunc': BUILDSTDERR: ftio.c:1903:18: warning: variable 'd_ver' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 1903 | uint8_t s_ver, d_ver, agg_ver, agg_method; BUILDSTDERR: | ^~~~~ ke[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-fttlv.lo `test -f 'fttlv.c' || echo './'`fttlv.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c fttlv.c -fPIC -DPIC -o .libs/libft_la-fttlv.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftswap.lo `test -f 'ftswap.c' || echo './'`ftswap.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftswap.c -fPIC -DPIC -o .libs/libft_la-ftswap.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftmap.lo `test -f 'ftmap.c' || echo './'`ftmap.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftmap.c -fPIC -DPIC -o .libs/libft_la-ftmap.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftio.lo `test -f 'ftio.c' || echo './'`ftio.c BUILDSTDERR: libtool: compile: gcc -DHAVE_CONFIG_H -In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from ftfile.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftfile.c: In function 'ftfile_loadfile': BUILDSTDERR: ftfile.c:116:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation] BUILDSTDERR: 116 | if (flags & FT_FILE_CHECKNAMES) BUILDSTDERR: | ^~ BUILDSTDERR: ftfile.c:125:7: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' BUILDSTDERR: 125 | if (flags & FT_FILE_SKIPTMP) BUILDSTDERR: | ^~ BUILDSTDERR: ftfile.c: In function 'load_dir': BUILDSTDERR: ftfile.c:629:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation] BUILDSTDERR: 629 | if (dirent->d_name[0] == '.') BUILDSTDERR: | ^~ BUILDSTDERR: ftfile.c:632:7: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' BUILDSTDERR: 632 | if (dirent->d_name[1] == '.') BUILDSTDERR: | ^~ BUILDSTDERR: ftfile.c: In function 'ftfile_loaddir': BUILDSTDERR: ftfile.c:247:5: warning: ignoring return value of 'fchdir', declared with attribute warn_unused_result [-Wunused-result] BUILDSTDERR: 247 | fchdir(here); BUILDSTDERR: | ^~~~~~~~~~~~ BUILDSTDERR: ftfile.c: In function 'ftfile_mkpath': BUILDSTDERR: ftfile.c:567:31: warning: '%2.2d' directive writing between 2 and 11 bytes into a region of size between 8 and 26 [-Wformat-overflow=] BUILDSTDERR: 567 | sprintf(buf, "%2.2d/%2.2d-%2.2d", (int)tm->tm_year+1900, BUILDSTDERR: | ^~~~~ BUILDSTDERR: ftfile.c:567:18: note: directive argument in the range [-2147483647, 2147483647] BUILDSTDERR: 567 | sprintf(buf, "%2.2d/%2.2d-%2.2d", (int)tm->tm_year+1900, BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~ BUILDSTDERR: In file included from /usr/include/stdio.h:867, BUILDSTDERR: from ftlib.h:42, BUILDSTDERR: from ftfile.c:30: BUILDSTDERR: /usr/include/bits/stdio2.h:36:10: note: '__builtin___sprintf_chk' output between 9 and 36 bytes into a destination of size 32 BUILDSTDERR: 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: 37 | __bos (__s), __fmt, __va_arg_pack ()); BUILDSTDERR: | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftfile.c:585:31: warning: '%2.2d' directive writing between 2 and 11 bytes into a region of size between 8 and 26 [-Wformat-overflow=] BUILDSTDERR: 585 | sprintf(buf, "%2.2d/%2.2d-%2.2d/%2.2d-%2.2d-%2.2d", (int)tm->tm_year+1900, BUILDSTDERR: | ^~~~~ BUILDSTDERR: ftfile.c:585:18: note: directive argument in the range [-2147483647, 2147483647] BUILDSTDERR: 585 | sprintf(buf, "%2.2d/%2.2d-%2.2d/%2.2d-%2.2d-%2.2d", (int)tm->tm_year+1900, BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftfile.c:585:18: note: directive argument in the range [-2147481748, 2147483647] BUILDSTDERR: ftfile.c:585:18: note: directive argument in the range [-2147483647, 2147483647] BUILDSTDERR: In file included from /usr/include/stdio.h:867, BUILDSTDERR: from ftlib.h:42, BUILDSTDERR: from ftfile.c:30: BUILDSTDERR: /usr/include/bits/stdio2.h:36:10: note: '__builtin___sprintf_chk' output between 18 and 72 bytes into a destination of size 32 BUILDSTDERR: 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: 37 | __bos (__s), __fmt, __va_arg_pack ()); BUILDSTDERR: | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftfile.c:562:31: warning: '%2.2d' directive writing between 2 and 11 bytes into a region of size between 8 and 26 [-Wformat-overflow=] BUILDSTDERR: 562 | sprintf(buf, "%2.2d-%2.2d/%2.2d-%2.2d-%2.2d", BUILDSTDERR: | ^~~~~ BUILDSTDERR: ftfile.c:562:18: note: directive argument in the range [-2147481748, 2147483647] BUILDSTDERR: 562 | sprintf(buf, "%2.2d-%2.2d/%2.2d-%2.2d-%2.2d", BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftfile.c:562:18: note: directive argument in the range [-2147483647, 2147483647] BUILDSTDERR: In file included from /usr/include/stdio.h:867, BUILDSTDERR: from ftlib.h:42, BUILDSTDERR: from ftfile.c:30: BUILDSTDERR: /usr/include/bits/stdio2.h:36:10: note: '__builtin___sprintf_chk' output between 15 and 60 bytes into a destination of size 32 BUILDSTDERR: 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: 37 | __bos (__s), __fmt, __va_arg_pack ()); BUILDSTDERR: | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from ftdecode.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from fterr.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: fterr.c: In function 'fterr_info': BUILDSTDERR: fterr.c:109:29: warning: '%s' directive output may be truncated writing up to 1024 bytes into a region of size 1022 [-Wformat-truncation=] BUILDSTDERR: 109 | snprintf(buf2, 1024, "%s: %s", fterr_id, buf); BUILDSTDERR: | ^~ ~~~ BUILDSTDERR: In file included from /usr/include/stdio.h:867, BUILDSTDERR: from ftlib.h:42, BUILDSTDERR: from fterr.c:30: BUILDSTDERR: /usr/include/bits/stdio2.h:67:10: note: '__builtin___snprintf_chk' output 3 or more bytes (assuming 1027) into a destination of size 1024 BUILDSTDERR: 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: 68 | __bos (__s), __fmt, __va_arg_pack ()); BUILDSTDERR: | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: fterr.c: In function 'fterr_err': BUILDSTDERR: fterr.c:131:31: warning: '%s' directive output may be truncated writing up to 1024 bytes into a region of size 1022 [-Wformat-truncation=] BUILDSTDERR: 131 | snprintf(buf2, 1024, "%s: %s: %s", fterr_id, buf, strerror(errno)); BUILDSTDERR: | ^~ ~~~ BUILDSTDERR: In file included from /usr/include/stdio.h:867, BUILDSTDERR: from ftlib.h:42, BUILDSTDERR: from fterr.c:30: BUILDSTDERR: /usr/include/bits/stdio2.h:67:10: note: '__builtin___snprintf_chk' output 5 or more bytes (assuming 1029) into a destination of size 1024 BUILDSTDERR: 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: 68 | __bos (__s), __fmt, __va_arg_pack ()); BUILDSTDERR: | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: fterr.c:136:29: warning: ': ' directive output may be truncated writing 2 bytes into a region of size between 0 and 1024 [-Wformat-truncation=] BUILDSTDERR: 136 | snprintf(buf2, 1024, "%s: %s", buf, strerror(errno)); BUILDSTDERR: | ^~ BUILDSTDERR: In file included from /usr/include/stdio.h:867, BUILDSTDERR: from ftlib.h:42, BUILDSTDERR: from fterr.c:30: BUILDSTDERR: /usr/include/bits/stdio2.h:67:10: note: '__builtin___snprintf_chk' output 3 or more bytes (assuming 1027) into a destination of size 1024 BUILDSTDERR: 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: 68 | __bos (__s), __fmt, __va_arg_pack ()); BUILDSTDERR: | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: fterr.c: In function 'fterr_errx': BUILDSTDERR: fterr.c:157:31: warning: '%s' directive output may be truncated writing up to 1024 bytes into a region of size 1022 [-Wformat-truncation=] BUILDSTDERR: 157 | snprintf(buf2, 1024, "%s: %s", fterr_id, buf); BUILDSTDERR: | ^~ ~~~ BUILDSTDERR: In file included from /usr/include/stdio.h:867, BUILDSTDERR: from ftlib.h:42, BUILDSTDERR: from fterr.c:30: BUILDSTDERR: /usr/include/bits/stdio2.h:67:10: note: '__builtin___snprintf_chk' output 3 or more bytes (assuming 1027) into a destination of size 1024 BUILDSTDERR: 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: 68 | __bos (__s), __fmt, __va_arg_pack ()); BUILDSTDERR: | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: fterr.c: In function 'fterr_warnx': BUILDSTDERR: fterr.c:181:31: warning: '%s' directive output may be truncated writing up to 1024 bytes into a region of size 1022 [-Wformat-truncation=] BUILDSTDERR: 181 | snprintf(buf2, 1024, "%s: %s", fterr_id, buf); BUILDSTDERR: | ^~ ~~~ BUILDSTDERR: In file included from /usr/include/stdio.h:867, BUILDSTDERR: from ftlib.h:42, BUILDSTDERR: from fterr.c:30: BUILDSTDERR: /usr/include/bits/stdio2.h:67:10: note: '__builtin___snprintf_chk' output 3 or more bytes (assuming 1027) into a destination of size 1024 BUILDSTDERR: 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: 68 | __bos (__s), __fmt, __va_arg_pack ()); BUILDSTDERR: | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: fterr.c: In function 'fterr_warn': BUILDSTDERR: fterr.c:202:31: warning: '%s' directive output may be truncated writing up to 1024 bytes into a region of size 1022 [-Wformat-truncation=] BUILDSTDERR: 202 | snprintf(buf2, 1024, "%s: %s: %s", fterr_id, buf, strerror(errno)); BUILDSTDERR: | ^~ ~~~ BUILDSTDERR: In file included from /usr/include/stdio.h:867, BUILDSTDERR: from ftlib.h:42, BUILDSTDERR: from fterr.c:30: BUILDSTDERR: /usr/include/bits/stdio2.h:67:10: note: '__builtin___snprintf_chk' output 5 or more bytes (assuming 1029) into a destination of size 1024 BUILDSTDERR: 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: 68 | __bos (__s), __fmt, __va_arg_pack ()); BUILDSTDERR: | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: fterr.c:207:29: warning: ': ' directive output may be truncated writing 2 bytes into a region of size between 0 and 1024 [-Wformat-truncation=] BUILDSTDERR: 207 | snprintf(buf2, 1024, "%s: %s", buf, strerror(errno)); BUILDSTDERR: | ^~ BUILDSTDERR: In file included from /usr/include/stdio.h:867, BUILDSTDERR: from ftlib.h:42, BUILDSTDERR: from fterr.c:30: BUILDSTDERR: /usr/include/bits/stdio2.h:67:10: note: '__builtin___snprintf_chk' output 3 or more bytes (assuming 1027) into a destination of size 1024 BUILDSTDERR: 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: 68 | __bos (__s), __fmt, __va_arg_pack ()); BUILDSTDERR: | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: In file included from /usr/include/inttypes.h:25, BUILDSTDERR: from ftsym.c:32: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftio.c -fPIC -DPIC -o .libs/libft_la-ftio.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftfile.lo `test -f 'ftfile.c' || echo './'`ftfile.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftfile.c -fPIC -DPIC -o .libs/libft_la-ftfile.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftdecode.lo `test -f 'ftdecode.c' || echo './'`ftdecode.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftdecode.c -fPIC -DPIC -o .libs/libft_la-ftdecode.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-fterr.lo `test -f 'fterr.c' || echo './'`fterr.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c fterr.c -fPIC -DPIC -o .libs/libft_la-fterr.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' BUILDSTDERR: /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from ftrec.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from ftchash.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from ftxfield.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftsym.lo `test -f 'ftsym.c' || echo './'`ftsym.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftsym.c -fPIC -DPIC -o .libs/libft_la-ftsym.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftrec.lo `test -f 'ftrec.c' || echo './'`ftrec.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftrec.c -fPIC -DPIC -o .libs/libft_la-ftrec.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftchash.lo `test -f 'ftchash.c' || echo './'`ftchash.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftchash.c -fPIC -DPIC -o .libs/libft_la-ftchash.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftxfield.lo `test -f 'ftxfield.c' || echo './'`ftxfield.c BUILDSTDERR: libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from radix.c:42: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from ftmask.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftmask.c: In function 'ftmask_def_find': BUILDSTDERR: ftmask.c:298:7: warning: variable 'found' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 298 | int found; BUILDSTDERR: | ^~~~~ BUILDSTDERR: In file included from /usr/include/bits/libc-header-start.h:33, BUILDSTDERR: from /usr/include/stdio.h:27, BUILDSTDERR: from getdate.y:33: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftxfield.c -fPIC -DPIC -o .libs/libft_la-ftxfield.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-radix.lo `test -f 'radix.c' || echo './'`radix.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c radix.c -fPIC -DPIC -o .libs/libft_la-radix.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftmask.lo `test -f 'ftmask.c' || echo './'`ftmask.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftmask.c -fPIC -DPIC -o .libs/libft_la-ftmask.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-getdate.lo `test -f 'getdate.c' || echo './'`getdate.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c getdate.c -fPIC -DPIC -o .libs/libft_la-getdate.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' BUILDSTDERR: /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/reIn file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from fttag.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from ftvar.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftvar.c: In function 'ftvar_free': BUILDSTDERR: ftvar.c:81:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation] BUILDSTDERR: 81 | if (ftve->val); BUILDSTDERR: | ^~ BUILDSTDERR: ftvar.c:82:7: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' BUILDSTDERR: 82 | free(ftve->val); BUILDSTDERR: | ^~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from ftxlate.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftxlate.c: In function 'cryptopan_anon': BUILDSTDERR: ftxlate.c:2111:7: warning: variable 'i' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 2111 | int i, pos; BUILDSTDERR: | ^ BUILDSTDERR: ftxlate.c: In function 'eval_ip_dst_addr_anon': BUILDSTDERR: ftxlate.c:2162:27: warning: 'rin_output[0]' is used uninitialized in this function [-Wuninitialized] BUILDSTDERR: 2162 | result |= (rin_output[0] >> 7) << (31-pos); BUILDSTDERR: | ~~~~~~~~~~^~~ BUILDSTDERR: ftxlate.c: In function 'eval_ip_src_addr_anon': BUILDSTDERR: ftxlate.c:2162:27: warning: 'rin_output[0]' is used uninitialized in this function [-Wuninitialized] BUILDSTDERR: 2162 | result |= (rin_output[0] >> 7) << (31-pos); BUILDSTDERR: | ~~~~~~~~~~^~~ dhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-fttag.lo `test -f 'fttag.c' || echo './'`fttag.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c fttag.c -fPIC -DPIC -o .libs/libft_la-fttag.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftvar.lo `test -f 'ftvar.c' || echo './'`ftvar.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftvar.c -fPIC -DPIC -o .libs/libft_la-ftvar.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftpaths.lo `test -f 'ftpaths.c' || echo './'`ftpaths.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftpaths.c -fPIC -DPIC -o .libs/libft_la-ftpaths.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftxlate.lo `test -f 'ftxlate.c' || echo './'`ftxlate.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftxlate.c -fPIC -DPIC -o .libs/libft_la-ftxlate.o BUILDSTDERR: make[2]: Leaving directory '/builddir/build/In file included from /usr/include/inttypes.h:25, BUILDSTDERR: from ftinclude.h:7, BUILDSTDERR: from ftfil.c:29: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftfil.c: In function 'ftfil_def_find': BUILDSTDERR: ftfil.c:2784:7: warning: variable 'found' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 2784 | int found; BUILDSTDERR: | ^~~~~ BUILDSTDERR: ftfil.c: In function 'resolve_primitives': BUILDSTDERR: ftfil.c:3376:13: warning: this 'if' clause does not guard... [-Wmisleading-indentation] BUILDSTDERR: 3376 | if ((type == FT_FIL_DEFINITION_MATCH_IP_NEXT_HOP_ADDR) || BUILDSTDERR: | ^~ BUILDSTDERR: ftfil.c:3382:15: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' BUILDSTDERR: 3382 | break; BUILDSTDERR: | ^~~~~ BUILDSTDERR: ftfil.c:3385:13: warning: this 'if' clause does not guard... [-Wmisleading-indentation] BUILDSTDERR: 3385 | if ((type == FT_FIL_DEFINITION_MATCH_IP_NEXT_HOP_ADDR) || BUILDSTDERR: | ^~ BUILDSTDERR: ftfil.c:3391:15: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' BUILDSTDERR: 3391 | break; BUILDSTDERR: | ^~~~~ BUILDSTDERR: ftfil.c:3394:13: warning: this 'if' clause does not guard... [-Wmisleading-indentation] BUILDSTDERR: 3394 | if ((type == FT_FIL_DEFINITION_MATCH_IP_NEXT_HOP_ADDR) || BUILDSTDERR: | ^~ BUILDSTDERR: ftfil.c:3400:15: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' BUILDSTDERR: 3400 | break; BUILDSTDERR: | ^~~~~ BUILDSTDERR: ftfil.c: In function 'ftfil_load_lookup': BUILDSTDERR: ftfil.c:5047:13: warning: 'deny' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 5047 | list[i] = flag; BUILDSTDERR: | ~~~~~~~~^~~~~~ BUILDSTDERR: ftfil.c: In function 'parse_definition_match': BUILDSTDERR: ftfil.c:2989:7: warning: 'ftm' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 2989 | free(ftm); BUILDSTDERR: | ^~~~~~~~~ BUILDSTDERR: ftfil.c: In function 'ftfil_load': BUILDSTDERR: ftfil.c:3491:20: warning: 'eval' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 3491 | ftmi->eval = eval; BUILDSTDERR: | ~~~~~~~~~~~^~~~~~ BUILDSTDERR: ftfil.c:3062:9: note: 'eval' was declared here BUILDSTDERR: 3062 | void *eval; BUILDSTDERR: | ^~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ftlib.h:32, BUILDSTDERR: from ftstat.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_def_find': BUILDSTDERR: ftstat.c:2948:7: warning: variable 'found' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 2948 | int found; BUILDSTDERR: | ^~~~~ BUILDSTDERR: ftstat.c: In function 'chash_c32_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:12657:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 12657 | CHASH_DUMP_INIT(ftchash_rec_c32, ftch_recc32); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_c322_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:12721:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 12721 | CHASH_DUMP_INIT(ftchash_rec_c322, ftch_recc322); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_c162_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:12800:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 12800 | CHASH_DUMP_INIT(ftchash_rec_c162, ftch_recc162); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_c163_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:12879:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 12879 | CHASH_DUMP_INIT(ftchash_rec_c163, ftch_recc163); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_c164_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:12972:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 12972 | CHASH_DUMP_INIT(ftchash_rec_c164, ftch_recc164); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_ip_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:13081:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 13081 | CHASH_DUMP_INIT(ftchash_rec_c32, ftch_recc32); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefix_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:13135:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 13135 | CHASH_DUMP_INIT(ftchash_rec_prefix, ftch_recprefix); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefix_tag_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:13194:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 13194 | CHASH_DUMP_INIT(ftchash_rec_prefix_tag, ftch_recprefix_tag); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefix2tag2_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:13271:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 13271 | CHASH_DUMP_INIT(ftchash_rec_prefix2tag2, ftch_recprefix2tag2); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefixh_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:13376:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 13376 | CHASH_DUMP_INIT(ftchash_rec_prefixh, ftch_recprefixh); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefix2_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:13456:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 13456 | CHASH_DUMP_INIT(ftchash_rec_prefix2, ftch_recprefix2); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefix16_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:13531:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 13531 | CHASH_DUMP_INIT(ftchash_rec_prefix16, ftch_recprefix16); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefix162_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:13608:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 13608 | CHASH_DUMP_INIT(ftchash_rec_prefix162, ftch_recprefix162); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefix216_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:13704:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 13704 | CHASH_DUMP_INIT(ftchash_rec_prefix216, ftch_recprefix216); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefix2162_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:13797:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 13797 | CHASH_DUMP_INIT(ftchash_rec_prefix2162, ftch_recprefix2162); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_c64_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:13903:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 13903 | CHASH_DUMP_INIT(ftchash_rec_c64, ftch_recc64); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_int_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:13958:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 13958 | CHASH_DUMP_INIT(ftchash_rec_int, ftch_recint); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_flow1_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:14047:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 14047 | CHASH_DUMP_INIT(ftchash_rec_flow1, ftch_recflow1); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_flow12_dump': BUILDSTDERR: ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 153 | char fmt_buf1[32], fmt_buf[1024];\ BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c:14174:3: note: in expansion of macro 'CHASH_DUMP_INIT' BUILDSTDERR: 14174 | CHASH_DUMP_INIT(ftchash_rec_flow1, ftch_recflow1); BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'bucket_dump1': BUILDSTDERR: ftstat.c:14279:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 14279 | char fmt_buf1[32], fmt_buf[1024]; BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_3_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:5217:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 5217 | STD_ACCUM_HASH1(ftstat_rpt_3, rpt3, ftchash_rec_c32, ftch_recc32, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:5217:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 5217 | STD_ACCUM_HASH1(ftstat_rpt_3, rpt3, ftchash_rec_c32, ftch_recc32, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_4_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:5295:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 5295 | STD_ACCUM_HASH1(ftstat_rpt_4, rpt4, ftchash_rec_c64, ftch_recc64, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:5295:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 5295 | STD_ACCUM_HASH1(ftstat_rpt_4, rpt4, ftchash_rec_c64, ftch_recc64, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_5_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:5374:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 5374 | STD_ACCUM_HASH1(ftstat_rpt_5, rpt5, ftchash_rec_c64, ftch_recc64, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:5374:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 5374 | STD_ACCUM_HASH1(ftstat_rpt_5, rpt5, ftchash_rec_c64, ftch_recc64, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_8_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:5600:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 5600 | STD_ACCUM_HASH1(ftstat_rpt_8, rpt8, ftchash_rec_c162, ftch_recc162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:5600:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 5600 | STD_ACCUM_HASH1(ftstat_rpt_8, rpt8, ftchash_rec_c162, ftch_recc162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_9_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:5685:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 5685 | STD_ACCUM_HASH1(ftstat_rpt_9, rpt9, ftchash_rec_c64, ftch_recc64, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:5685:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 5685 | STD_ACCUM_HASH1(ftstat_rpt_9, rpt9, ftchash_rec_c64, ftch_recc64, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_10_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:5766:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 5766 | STD_ACCUM_HASH1(ftstat_rpt_10, rpt10, ftchash_rec_c64, ftch_recc64, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:5766:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 5766 | STD_ACCUM_HASH1(ftstat_rpt_10, rpt10, ftchash_rec_c64, ftch_recc64, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_14_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:6086:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 6086 | STD_ACCUM_HASH1(ftstat_rpt_14, rpt14, ftchash_rec_c32, ftch_recc32, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:6086:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 6086 | STD_ACCUM_HASH1(ftstat_rpt_14, rpt14, ftchash_rec_c32, ftch_recc32, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_18_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:6454:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 6454 | STD_ACCUM_HASH1(ftstat_rpt_18, rpt18, ftchash_rec_c32, ftch_recc32, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:6454:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 6454 | STD_ACCUM_HASH1(ftstat_rpt_18, rpt18, ftchash_rec_c32, ftch_recc32, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_21_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:6681:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 6681 | STD_ACCUM_HASH1(ftstat_rpt_21, rpt21, ftchash_rec_c162, ftch_recc162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:6681:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 6681 | STD_ACCUM_HASH1(ftstat_rpt_21, rpt21, ftchash_rec_c162, ftch_recc162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_24_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:6915:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 6915 | STD_ACCUM_HASH1(ftstat_rpt_24, rpt24, ftchash_rec_c162, ftch_recc162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:6915:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 6915 | STD_ACCUM_HASH1(ftstat_rpt_24, rpt24, ftchash_rec_c162, ftch_recc162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_39_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8433:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8433 | STD_ACCUM_HASH1(ftstat_rpt_39, rpt39, ftchash_rec_c162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8433:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8433 | STD_ACCUM_HASH1(ftstat_rpt_39, rpt39, ftchash_rec_c162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_40_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8517:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8517 | STD_ACCUM_HASH1(ftstat_rpt_40, rpt40, ftchash_rec_c162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8517:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8517 | STD_ACCUM_HASH1(ftstat_rpt_40, rpt40, ftchash_rec_c162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_41_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8601:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8601 | STD_ACCUM_HASH1(ftstat_rpt_41, rpt41, ftchash_rec_c162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8601:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8601 | STD_ACCUM_HASH1(ftstat_rpt_41, rpt41, ftchash_rec_c162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_42_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8685:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8685 | STD_ACCUM_HASH1(ftstat_rpt_42, rpt42, ftchash_rec_c162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8685:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8685 | STD_ACCUM_HASH1(ftstat_rpt_42, rpt42, ftchash_rec_c162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_43_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8771:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8771 | STD_ACCUM_HASH1(ftstat_rpt_43, rpt43, ftchash_rec_c163, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8771:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8771 | STD_ACCUM_HASH1(ftstat_rpt_43, rpt43, ftchash_rec_c163, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_44_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8856:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8856 | STD_ACCUM_HASH1(ftstat_rpt_44, rpt44, ftchash_rec_c163, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8856:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8856 | STD_ACCUM_HASH1(ftstat_rpt_44, rpt44, ftchash_rec_c163, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_45_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8941:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8941 | STD_ACCUM_HASH1(ftstat_rpt_45, rpt45, ftchash_rec_c164, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8941:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8941 | STD_ACCUM_HASH1(ftstat_rpt_45, rpt45, ftchash_rec_c164, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_48_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9180:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9180 | STD_ACCUM_HASH1(ftstat_rpt_48, rpt48, ftchash_rec_c32, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9180:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9180 | STD_ACCUM_HASH1(ftstat_rpt_48, rpt48, ftchash_rec_c32, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_49_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9260:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9260 | STD_ACCUM_HASH1(ftstat_rpt_49, rpt49, ftchash_rec_c32, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9260:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9260 | STD_ACCUM_HASH1(ftstat_rpt_49, rpt49, ftchash_rec_c32, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_50_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9340:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9340 | STD_ACCUM_HASH1(ftstat_rpt_50, rpt50, ftchash_rec_c322, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9340:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9340 | STD_ACCUM_HASH1(ftstat_rpt_50, rpt50, ftchash_rec_c322, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_76_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:12097:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 12097 | STD_ACCUM_HASH1(ftstat_rpt_76, rpt76, ftchash_rec_c32, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:12097:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 12097 | STD_ACCUM_HASH1(ftstat_rpt_76, rpt76, ftchash_rec_c32, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_77_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:12175:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 12175 | STD_ACCUM_HASH1(ftstat_rpt_77, rpt77, ftchash_rec_c32, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:12175:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 12175 | STD_ACCUM_HASH1(ftstat_rpt_77, rpt77, ftchash_rec_c32, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_78_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:12253:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 12253 | STD_ACCUM_HASH1(ftstat_rpt_78, rpt78, ftchash_rec_c32, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:12253:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 12253 | STD_ACCUM_HASH1(ftstat_rpt_78, rpt78, ftchash_rec_c32, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_c64_dump': BUILDSTDERR: ftstat.c:13919:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 13919 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_int_dump': BUILDSTDERR: ftstat.c:13981:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 13981 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_c32_dump': BUILDSTDERR: ftstat.c:12678:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 12678 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_c322_dump': BUILDSTDERR: ftstat.c:12747:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 12747 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_c162_dump': BUILDSTDERR: ftstat.c:12826:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 12826 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_ip_dump': BUILDSTDERR: ftstat.c:13097:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 13097 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_15_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:6166:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 6166 | STD_ACCUM_HASH1(ftstat_rpt_15, rpt15, ftchash_rec_prefix, ftch_recprefix, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:6166:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 6166 | STD_ACCUM_HASH1(ftstat_rpt_15, rpt15, ftchash_rec_prefix, ftch_recprefix, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_16_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:6258:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 6258 | STD_ACCUM_HASH1(ftstat_rpt_16, rpt16, ftchash_rec_prefix, ftch_recprefix, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:6258:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 6258 | STD_ACCUM_HASH1(ftstat_rpt_16, rpt16, ftchash_rec_prefix, ftch_recprefix, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_17_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:6350:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 6350 | STD_ACCUM_HASH1(ftstat_rpt_17, rpt17, ftchash_rec_prefix2, ftch_recprefix2, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:6350:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 6350 | STD_ACCUM_HASH1(ftstat_rpt_17, rpt17, ftchash_rec_prefix2, ftch_recprefix2, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_25_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:6999:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 6999 | STD_ACCUM_HASH1(ftstat_rpt_25, rpt25, ftchash_rec_prefix16, ftch_recprefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:6999:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 6999 | STD_ACCUM_HASH1(ftstat_rpt_25, rpt25, ftchash_rec_prefix16, ftch_recprefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_26_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7094:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7094 | STD_ACCUM_HASH1(ftstat_rpt_26, rpt26, ftchash_rec_prefix16, ftch_recprefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7094:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7094 | STD_ACCUM_HASH1(ftstat_rpt_26, rpt26, ftchash_rec_prefix16, ftch_recprefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_27_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7189:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7189 | STD_ACCUM_HASH1(ftstat_rpt_26, rpt26, ftchash_rec_prefix16, ftch_recprefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7189:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7189 | STD_ACCUM_HASH1(ftstat_rpt_26, rpt26, ftchash_rec_prefix16, ftch_recprefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_28_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7285:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7285 | STD_ACCUM_HASH1(ftstat_rpt_28, rpt28, ftchash_rec_prefix16, ftch_recprefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7285:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7285 | STD_ACCUM_HASH1(ftstat_rpt_28, rpt28, ftchash_rec_prefix16, ftch_recprefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_29_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7380:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7380 | STD_ACCUM_HASH1(ftstat_rpt_29, rpt29, ftchash_rec_prefix216, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7380:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7380 | STD_ACCUM_HASH1(ftstat_rpt_29, rpt29, ftchash_rec_prefix216, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_30_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7490:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7490 | STD_ACCUM_HASH1(ftstat_rpt_30, rpt30, ftchash_rec_prefix216, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7490:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7490 | STD_ACCUM_HASH1(ftstat_rpt_30, rpt30, ftchash_rec_prefix216, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_31_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7600:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7600 | STD_ACCUM_HASH1(ftstat_rpt_31, rpt31, ftchash_rec_prefix2162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7600:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7600 | STD_ACCUM_HASH1(ftstat_rpt_31, rpt31, ftchash_rec_prefix2162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_32_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7716:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7716 | STD_ACCUM_HASH1(ftstat_rpt_32, rpt32, ftchash_rec_prefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7716:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7716 | STD_ACCUM_HASH1(ftstat_rpt_32, rpt32, ftchash_rec_prefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_33_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7811:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7811 | STD_ACCUM_HASH1(ftstat_rpt_33, rpt33, ftchash_rec_prefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7811:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7811 | STD_ACCUM_HASH1(ftstat_rpt_33, rpt33, ftchash_rec_prefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_34_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7903:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7903 | STD_ACCUM_HASH1(ftstat_rpt_33, rpt33, ftchash_rec_prefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7903:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7903 | STD_ACCUM_HASH1(ftstat_rpt_33, rpt33, ftchash_rec_prefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_35_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7998:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7998 | STD_ACCUM_HASH1(ftstat_rpt_35, rpt35, ftchash_rec_prefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:7998:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 7998 | STD_ACCUM_HASH1(ftstat_rpt_35, rpt35, ftchash_rec_prefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_36_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8093:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8093 | STD_ACCUM_HASH1(ftstat_rpt_36, rpt36, ftchash_rec_prefix216, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8093:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8093 | STD_ACCUM_HASH1(ftstat_rpt_36, rpt36, ftchash_rec_prefix216, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_37_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8205:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8205 | STD_ACCUM_HASH1(ftstat_rpt_37, rpt37, ftchash_rec_prefix216, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8205:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8205 | STD_ACCUM_HASH1(ftstat_rpt_37, rpt37, ftchash_rec_prefix216, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_38_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8317:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8317 | STD_ACCUM_HASH1(ftstat_rpt_38, rpt38, ftchash_rec_prefix2162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:8317:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 8317 | STD_ACCUM_HASH1(ftstat_rpt_38, rpt38, ftchash_rec_prefix2162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_51_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9422:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9422 | STD_ACCUM_HASH1(ftstat_rpt_51, rpt51, ftchash_rec_prefix16, ftch_recprefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9422:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9422 | STD_ACCUM_HASH1(ftstat_rpt_51, rpt51, ftchash_rec_prefix16, ftch_recprefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_52_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9515:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9515 | STD_ACCUM_HASH1(ftstat_rpt_52, rpt52, ftchash_rec_prefix16, ftch_recprefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9515:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9515 | STD_ACCUM_HASH1(ftstat_rpt_52, rpt52, ftchash_rec_prefix16, ftch_recprefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_53_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9607:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9607 | STD_ACCUM_HASH1(ftstat_rpt_53, rpt53, ftchash_rec_prefix16, ftch_recprefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9607:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9607 | STD_ACCUM_HASH1(ftstat_rpt_53, rpt53, ftchash_rec_prefix16, ftch_recprefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_54_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9700:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9700 | STD_ACCUM_HASH1(ftstat_rpt_54, rpt54, ftchash_rec_prefix16, ftch_recprefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9700:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9700 | STD_ACCUM_HASH1(ftstat_rpt_54, rpt54, ftchash_rec_prefix16, ftch_recprefix16, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_55_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9793:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9793 | STD_ACCUM_HASH1(ftstat_rpt_55, rpt55, ftchash_rec_prefix162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9793:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9793 | STD_ACCUM_HASH1(ftstat_rpt_55, rpt55, ftchash_rec_prefix162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_56_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9891:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9891 | STD_ACCUM_HASH1(ftstat_rpt_56, rpt56, ftchash_rec_prefix162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9891:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9891 | STD_ACCUM_HASH1(ftstat_rpt_56, rpt56, ftchash_rec_prefix162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_57_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9989:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9989 | STD_ACCUM_HASH1(ftstat_rpt_57, rpt57, ftchash_rec_prefix216, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:9989:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 9989 | STD_ACCUM_HASH1(ftstat_rpt_57, rpt57, ftchash_rec_prefix216, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_58_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:10099:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 10099 | STD_ACCUM_HASH1(ftstat_rpt_58, rpt58, ftchash_rec_prefix216, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:10099:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 10099 | STD_ACCUM_HASH1(ftstat_rpt_58, rpt58, ftchash_rec_prefix216, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_59_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:10211:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 10211 | STD_ACCUM_HASH1(ftstat_rpt_59, rpt59, ftchash_rec_prefix2162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:10211:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 10211 | STD_ACCUM_HASH1(ftstat_rpt_59, rpt59, ftchash_rec_prefix2162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_60_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:10325:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 10325 | STD_ACCUM_HASH1(ftstat_rpt_60, rpt60, ftchash_rec_prefix162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:10325:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 10325 | STD_ACCUM_HASH1(ftstat_rpt_60, rpt60, ftchash_rec_prefix162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_61_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:10423:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 10423 | STD_ACCUM_HASH1(ftstat_rpt_61, rpt61, ftchash_rec_prefix162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:10423:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 10423 | STD_ACCUM_HASH1(ftstat_rpt_61, rpt61, ftchash_rec_prefix162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_62_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:10521:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 10521 | STD_ACCUM_HASH1(ftstat_rpt_62, rpt62, ftchash_rec_prefix162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:10521:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 10521 | STD_ACCUM_HASH1(ftstat_rpt_62, rpt62, ftchash_rec_prefix162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_63_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:10617:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 10617 | STD_ACCUM_HASH1(ftstat_rpt_63, rpt63, ftchash_rec_prefix162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:10617:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 10617 | STD_ACCUM_HASH1(ftstat_rpt_63, rpt63, ftchash_rec_prefix162, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_64_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:10714:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 10714 | STD_ACCUM_HASH1(ftstat_rpt_64, rpt64, ftchash_rec_prefix, ftch_recprefix, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:10714:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 10714 | STD_ACCUM_HASH1(ftstat_rpt_64, rpt64, ftchash_rec_prefix, ftch_recprefix, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_66_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:10906:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 10906 | STD_ACCUM_HASH1(ftstat_rpt_66, rpt66, ftchash_rec_prefixh, ftch_recprefixh, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:10906:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 10906 | STD_ACCUM_HASH1(ftstat_rpt_66, rpt66, ftchash_rec_prefixh, ftch_recprefixh, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_67_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:11077:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 11077 | STD_ACCUM_HASH1(ftstat_rpt_67, rpt67, ftchash_rec_prefixh, ftch_recprefixh, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:11077:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 11077 | STD_ACCUM_HASH1(ftstat_rpt_67, rpt67, ftchash_rec_prefixh, ftch_recprefixh, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_68_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:11247:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 11247 | STD_ACCUM_HASH1(ftstat_rpt_68, rpt68, ftchash_rec_flow1, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:11247:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 11247 | STD_ACCUM_HASH1(ftstat_rpt_68, rpt68, ftchash_rec_flow1, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_69_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:11366:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 11366 | STD_ACCUM_HASH1(ftstat_rpt_69, rpt69, ftchash_rec_flow1, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:11366:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 11366 | STD_ACCUM_HASH1(ftstat_rpt_69, rpt69, ftchash_rec_flow1, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_70_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:11480:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 11480 | STD_ACCUM_HASH1(ftstat_rpt_70, rpt70, ftchash_rec_prefix_tag, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:11480:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 11480 | STD_ACCUM_HASH1(ftstat_rpt_70, rpt70, ftchash_rec_prefix_tag, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_71_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:11577:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 11577 | STD_ACCUM_HASH1(ftstat_rpt_71, rpt71, ftchash_rec_prefix_tag, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:11577:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 11577 | STD_ACCUM_HASH1(ftstat_rpt_71, rpt71, ftchash_rec_prefix_tag, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_72_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:11673:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 11673 | STD_ACCUM_HASH1(ftstat_rpt_72, rpt72, ftchash_rec_prefix_tag, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:11673:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 11673 | STD_ACCUM_HASH1(ftstat_rpt_72, rpt72, ftchash_rec_prefix_tag, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_73_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:11769:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 11769 | STD_ACCUM_HASH1(ftstat_rpt_73, rpt73, ftchash_rec_prefix_tag, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:11769:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 11769 | STD_ACCUM_HASH1(ftstat_rpt_73, rpt73, ftchash_rec_prefix_tag, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_rpt_74_accum': BUILDSTDERR: ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 688 | A->ps.avg_pps += pps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:19: note: 'pps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:11865:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 11865 | STD_ACCUM_HASH1(ftstat_rpt_74, rpt74, ftchash_rec_prefix2tag2, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 693 | A->ps.avg_bps += bps_tmp;\ BUILDSTDERR: | ^~ BUILDSTDERR: ftstat.c:667:10: note: 'bps_tmp' was declared here BUILDSTDERR: 667 | double bps_tmp, pps_tmp;\ BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: ftstat.c:11865:3: note: in expansion of macro 'STD_ACCUM_HASH1' BUILDSTDERR: 11865 | STD_ACCUM_HASH1(ftstat_rpt_74, rpt74, ftchash_rec_prefix2tag2, BUILDSTDERR: | ^~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefix_dump': BUILDSTDERR: ftstat.c:13151:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 13151 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefix2_dump': BUILDSTDERR: ftstat.c:13475:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 13475 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefix16_dump': BUILDSTDERR: ftstat.c:13555:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 13555 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefix216_dump': BUILDSTDERR: ftstat.c:13731:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 13731 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefix2162_dump': BUILDSTDERR: ftstat.c:13829:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 13829 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefix162_dump': BUILDSTDERR: ftstat.c:13637:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 13637 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefixh_dump': BUILDSTDERR: ftstat.c:13395:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 13395 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefix_tag_dump': BUILDSTDERR: ftstat.c:13218:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 13218 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_prefix2tag2_dump': BUILDSTDERR: ftstat.c:13301:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 13301 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_flow1_dump': BUILDSTDERR: ftstat.c:14085:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 14085 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_flow12_dump': BUILDSTDERR: ftstat.c:14205:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 14205 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_c163_dump.constprop': BUILDSTDERR: ftstat.c:12909:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 12909 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'chash_c164_dump.constprop': BUILDSTDERR: ftstat.c:13006:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 13006 | ftchash_sort(ftch, sort_offset, sort_flags); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_def_accum': BUILDSTDERR: ftstat.c:3148:41: warning: 'cur.dst_tag' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 3148 | *((uint32_t*)(rec+(*fo).dst_tag)) = cur.dst_tag; BUILDSTDERR: | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ BUILDSTDERR: ftstat.c:3147:41: warning: 'cur.src_tag' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 3147 | *((uint32_t*)(rec+(*fo).src_tag)) = cur.src_tag; BUILDSTDERR: | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ BUILDSTDERR: ftstat.c: In function 'ftstat_def_dump': BUILDSTDERR: ftstat.c:3315:9: warning: 'path_run' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 3315 | fterr_warnx("f_dump(%s): failed.", path_run); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftfil.lo `test -f 'ftfil.c' || echo './'`ftfil.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftfil.c -fPIC -DPIC -o .libs/libft_la-ftfil.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o libft_la-ftstat.lo `test -f 'ftstat.c' || echo './'`ftstat.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -DSYSCONFDIR=\"/etc/flow-tools\" -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c ftstat.c -fPIC -DPIC -o .libs/libft_la-ftstat.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' /bin/sh ../libtool --tag=CC --mode=link gcc -Wall -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o libft.la -rpath /usr/lib64 libft_la-ftio.lo libft_la-ftswap.lo libft_la-ftencode.lo libft_la-ftdecode.lo libft_la-ftprof.lo libft_la-bit1024.lo libft_la-fmt.lo libft_la-support.lo libft_la-ftfile.lo libft_la-fttlv.lo libft_la-ftmap.lo libft_la-ftrec.lo libft_la-fterr.lo libft_la-ftchash.lo libft_la-ftsym.lo libft_la-radix.lo libft_la-fttag.lo libft_la-ftfil.lo libft_la-ftstat.lo libft_la-getdate.lo libft_la-ftxfield.lo libft_la-ftmask.lo libft_la-ftvar.lo libft_la-ftxlate.lo libft_la-ftpaths.lo -lz BUILDSTDERR: libtool: link: gcc -shared .libs/libft_la-ftio.o .libs/libft_la-ftswap.o .libs/libft_la-ftencode.o .libs/libft_la-ftdecode.o .libs/libft_la-ftprof.o .libs/libft_la-bit1024.o .libs/libft_la-fmt.o .libs/libft_la-support.o .libs/libft_la-ftfile.o .libs/libft_la-fttlv.o .libs/libft_la-ftmap.o .libs/libft_la-ftrec.o .libs/libft_la-fterr.o .libs/libft_la-ftchash.o .libs/libft_la-ftsym.o .libs/libft_la-radix.o .libs/libft_la-fttag.o .libs/libft_la-ftfil.o .libs/libft_la-ftstat.o .libs/libft_la-getdate.o .libs/libft_la-ftxfield.o .libs/libft_la-ftmask.o .libs/libft_la-ftvar.o .libs/libft_la-ftxlate.o .libs/libft_la-ftpaths.o -lz -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -m64 -mtune=generic -Wl,-z -Wl,relro -Wl,--as-nIn file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-send.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-cat.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: flow-cat.c: In function 'main': BUILDSTDERR: flow-cat.c:346:13: warning: 'in_fd_plain' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 346 | ((in_fd_plain && !disable_mmap) ? FT_IO_FLAG_MMAP : 0)) < 0) BUILDSTDERR: | ^~~~~~~~~~~ BUILDSTDERR: flow-cat.c:399:41: warning: 'time_tmp2' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 399 | if (time_high && (time_tmp2 < time_high)) { BUILDSTDERR: | ~~~~~~~~~~~^~~~~~~~~~~~ BUILDSTDERR: flow-cat.c:383:16: warning: 'time_tmp1' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 383 | if ((time_tmp1 < time_low) || BUILDSTDERR: | ^ BUILDSTDERR: In file included from /usr/include/inttypes.h:25, BUILDSTDERR: from flow-dscan.c:32: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: flow-dscan.c: In function 'load_state': BUILDSTDERR: flow-dscan.c:634:36: warning: variable 'h' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 634 | uint32_t ip, hash, depth, flags, h, time, nports, i, j; BUILDSTDERR: | ^ BUILDSTDERR: flow-dscan.c: In function 'ager': BUILDSTDERR: flow-dscan.c:731:16: warning: variable 'picky_gcc' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 731 | int i, work, picky_gcc; BUILDSTDERR: | ^~~~~~~~~ BUILDSTDERR: flow-dscan.c: In function 'load_state': BUILDSTDERR: flow-dscan.c:655:9: warning: ignoring return value of 'fscanf', declared with attribute warn_unused_result [-Wunused-result] BUILDSTDERR: 655 | fscanf(FP, "%u %u %u %64s", (unsigned*)&hash, (unsigned*)&depth, BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: 656 | (unsigned*)&flags, buf); BUILDSTDERR: | ~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: flow-dscan.c:677:9: warning: ignoring return value of 'fscanf', declared with attribute warn_unused_result [-Wunused-result] BUILDSTDERR: 677 | fscanf(FP, "%u %15s", &time, buf); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: flow-dscan.c:694:9: warning: ignoring return value of 'fscanf', declared with attribute warn_unused_result [-Wunused-result] BUILDSTDERR: 694 | fscanf(FP, "%u", &nports); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: flow-dscan.c:696:11: warning: ignoring return value of 'fscanf', declared with attribute warn_unused_result [-Wunused-result] BUILDSTDERR: 696 | fscanf(FP, "%u", &j); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: flow-dscan.c:698:13: warning: 'ddp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 698 | bit1024_store((int)j, &ddp->portmap); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: In file included from ./../lib/ftlib.h:63, BUILDSTDERR: from flow-dscan.c:37: BUILDSTDERR: ./../lib/ftqueue.h:204:20: warning: 'drp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 204 | (head)->stqh_last = &(elm)->field.stqe_next; \ BUILDSTDERR: | ^ BUILDSTDERR: flow-dscan.c:630:21: note: 'drp' was declared here BUILDSTDERR: 630 | struct dscan_rec *drp; BUILDSTDERR: | ^~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-receive.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-expire.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-capture.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: flow-capture.c: In function 'main': BUILDSTDERR: flow-capture.c:1162:25: warning: 'ftch_recexpp' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 1162 | ++ftch_recexpp->filtered_flows; BUILDSTDERR: | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~ eeded -Wl,-z -Wl,now -Wl,-soname -Wl,libft.so.0 -o .libs/libft.so.0.0.0 libtool: link: (cd ".libs" && rm -f "libft.so.0" && ln -s "libft.so.0.0.0" "libft.so.0") libtool: link: (cd ".libs" && rm -f "libft.so" && ln -s "libft.so.0.0.0" "libft.so") libtool: link: ( cd ".libs" && rm -f "libft.la" && ln -s "../libft.la" "libft.la" ) make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' Making all in src /usr/bin/make all-am make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-send.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-cat.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-dscan.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-receive.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-expire.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-capture.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' BUILDSTDERR: gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tablesIn file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-gen.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: aclyacc.c: In function 'yyparse': BUILDSTDERR: aclyacc.c:798:16: warning: implicit declaration of function 'yylex' [-Wimplicit-function-declaration] BUILDSTDERR: 798 | # define YYLEX yylex () BUILDSTDERR: | ^~~~~ BUILDSTDERR: aclyacc.c:1443:16: note: in expansion of macro 'YYLEX' BUILDSTDERR: 1443 | yychar = YYLEX; BUILDSTDERR: | ^~~~~ BUILDSTDERR: aclyacc.c:2001:7: warning: implicit declaration of function 'yyerror'; did you mean 'yyerrok'? [-Wimplicit-function-declaration] BUILDSTDERR: 2001 | yyerror (YY_("syntax error")); BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: | yyerrok BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-print.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: flow-print.c: In function 'main': BUILDSTDERR: flow-print.c:164:5: warning: 'format_index' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 164 | fterr_errx(1, "No such format, %d\n", format_index); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-filter.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: flow-filter.c: In function 'main': BUILDSTDERR: flow-filter.c:532:13: warning: 'acl_std_nexthop_index2' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 532 | ret = acl_eval_std(acl_list, acl_std_nexthop_index2, *cur.nexthop); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: flow-filter.c:581:13: warning: 'acl_ext_index2' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 581 | ret = acl_eval_ext(acl_list, acl_ext_index2, tmp_ext); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: flow-filter.c:554:13: warning: 'acl_std_dst_index2' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 554 | ret = acl_eval_std(acl_list, acl_std_dst_index2, *cur.dstaddr); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: flow-filter.c:543:13: warning: 'acl_std_src_index2' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 543 | ret = acl_eval_std(acl_list, acl_std_src_index2, *cur.srcaddr); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: flow-filter.c:470:10: warning: 'exaddr' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 470 | if (*cur.exaddr != exaddr) { BUILDSTDERR: | ^ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-header.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: flow-header.c: In function 'main': BUILDSTDERR: flow-header.c:42:10: warning: variable 'debug' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 42 | int i, debug; BUILDSTDERR: | ^~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from acl2.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: acl2.c: In function 'acl_create': BUILDSTDERR: acl2.c:125:10: warning: variable 'new' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 125 | int x, new; BUILDSTDERR: | ^~~ BUILDSTDERR: acllex.c:1371:16: warning: 'input' defined but not used [-Wunused-function] BUILDSTDERR: 1371 | static int input (void) BUILDSTDERR: | ^~~~~ BUILDSTDERR: acllex.c:1330:17: warning: 'yyunput' defined but not used [-Wunused-function] BUILDSTDERR: 1330 | static void yyunput (int c, register char * yy_bp ) BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-xlate.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: flow-xlate.c: In function 'main': BUILDSTDERR: flow-xlate.c:226:3: warning: 'cap_start' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 226 | ftio_set_cap_time(&ftio_out, cap_start, cap_end); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: flow-xlate.c:226:3: warning: 'cap_end' may be used uninitialized in this function [-Wmaybe-uninitialized] -fstack-clash-protection -fcf-protection -c flow-gen.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c aclyacc.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-print.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-filter.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-header.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c acl2.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c acllex.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-xlate.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' BUILDSTDERR: gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_AIn file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-split.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-merge.c:31: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-tag.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: flow-tag.c: In function 'main': BUILDSTDERR: flow-tag.c:200:3: warning: 'cap_start' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 200 | ftio_set_cap_time(&ftio_out, cap_start, cap_end); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: flow-tag.c:200:3: warning: 'cap_end' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-nfilter.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: flow-nfilter.c: In function 'main': BUILDSTDERR: flow-nfilter.c:192:3: warning: 'cap_start' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 192 | ftio_set_cap_time(&ftio_out, cap_start, cap_end); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: flow-nfilter.c:192:3: warning: 'cap_end' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-report.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: flow-report.c: In function 'main': BUILDSTDERR: flow-report.c:67:17: warning: variable 'done' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 67 | int i, split, done; BUILDSTDERR: | ^~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-fanout.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: flow-fanout.c: In function 'main': BUILDSTDERR: flow-fanout.c:308:5: warning: ignoring return value of 'chdir', declared with attribute warn_unused_result [-Wunused-result] BUILDSTDERR: 308 | chdir ("/"); BUILDSTDERR: | ^~~~~~~~~~~ BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-mask.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: flow-mask.c: In function 'main': BUILDSTDERR: flow-mask.c:178:3: warning: 'cap_start' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 178 | ftio_set_cap_time(&ftio_out, cap_start, cap_end); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ BUILDSTDERR: flow-mask.c:178:3: warning: 'cap_end' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: In file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-import.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: flow-import.c: In function 'format4': BUILDSTDERR: flow-import.c:1184:7: warning: 'len' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 1184 | fterr_errx(1, "fread(): failed - expecting to read %d bytes.", len); BUILDSTDERR: | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-split.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-merge.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-tag.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-nfilter.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-report.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-fanout.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-mask.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-import.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-capture flow-capture.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-capture flow-capture.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-cat flow-cat.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-cat flow-cat.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-print flow-print.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-print flow-print.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-dscan flow-dscan.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-dscan flow-dscan.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-send flow-send.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-send flow-send.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-receive flow-receive.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-receive flow-receive.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-gen flow-gen.o ../lib/libft.la -lz BUILDSTDERR: libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pIn file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-stat.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: flow-stat.c: In function 'format14': BUILDSTDERR: flow-stat.c:1643:12: warning: variable 'nflows' set but not used [-Wunused-but-set-variable] BUILDSTDERR: 1643 | uint64_t nflows; BUILDSTDERR: | ^~~~~~ BUILDSTDERR: flow-stat.c: In function 'tbl_out1': BUILDSTDERR: flow-stat.c:3637:7: warning: 'plines' may be used uninitialized in this function [-Wmaybe-uninitialized] BUILDSTDERR: 3637 | ++plines; BUILDSTDERR: | ^~~~~~~~ ie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-gen flow-gen.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-expire flow-expire.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-expire flow-expire.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c flow-stat.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-filter flow-filter.o aclyacc.o acllex.o acl2.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-filter flow-filter.o aclyacc.o acllex.o acl2.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-header flow-header.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-header flow-header.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-split flow-split.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-split flow-split.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-xlate flow-xlate.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-xlate flow-xlate.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-merge flow-merge.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-merge flow-merge.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' BUILDSTDERR: /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-secIn file included from /usr/include/sys/types.h:25, BUILDSTDERR: from ./../lib/ftlib.h:32, BUILDSTDERR: from flow-export.c:30: BUILDSTDERR: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] BUILDSTDERR: 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" BUILDSTDERR: | ^~~~~~~ BUILDSTDERR: flow-export.c: In function 'format1': BUILDSTDERR: flow-export.c:505:8: warning: unused variable 'thiszone' [-Wunused-variable] BUILDSTDERR: 505 | long thiszone; BUILDSTDERR: | ^~~~~~~~ BUILDSTDERR: flow-export.c: In function 'format5': BUILDSTDERR: flow-export.c:899:59: warning: unused variable 'db_tmp' [-Wunused-variable] BUILDSTDERR: 899 | char *db_host, *db_name, *db_table, *db_user, *db_pwd, *db_tmp, *tmp; BUILDSTDERR: | ^~~~~~ urity -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-import flow-import.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-import flow-import.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -I/usr/include/mysql -I/usr/include -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o flow_export-flow-export.o `test -f 'flow-export.c' || echo './'`flow-export.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-fanout flow-fanout.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-fanout flow-fanout.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-tag flow-tag.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-tag flow-tag.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-report flow-report.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-report flow-report.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-nfilter flow-nfilter.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-nfilter flow-nfilter.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-mask flow-mask.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-mask flow-mask.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-stat flow-stat.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-stat flow-stat.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -I/usr/include/mysql -I/usr/include -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -L/usr/lib/mysql -L/usr/lib64 -lpq -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o flow-export flow_export-flow-export.o ../lib/libft.la -lmysqlclient -lpq -lz libtool: link: gcc -fPIE -I/usr/include/mysql -I/usr/include -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -o .libs/flow-export flow_export-flow-export.o -L/usr/lib/mysql -L/usr/lib64 ../lib/.libs/libft.so -lmysqlclient -lpq -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' Making all in bin make[1]: Nothing to be done for 'all'. Making all in configs make[1]: Nothing to be done for 'all'. Making all in docs make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-cat.1.in > flow-cat.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-capture.1.in > flow-capture.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-dscan.1.in > flow-dscan.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-expire.1.in > flow-expire.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-fanout.1.in > flow-fanout.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-export.1.in > flow-export.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-filter.1.in > flow-filter.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-header.1.in > flow-header.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-import.1.in > flow-import.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-gen.1.in > flow-gen.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-print.1.in > flow-print.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-receive.1.in > flow-receive.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-merge.1.in > flow-merge.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-split.1.in > flow-split.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-send.1.in > flow-send.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-tools-examples.1.in > flow-tools-examples.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-tools.1.in > flow-tools.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-stat.1.in > flow-stat.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-xlate.1.in > flow-xlate.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-nfilter.1.in > flow-nfilter.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-tag.1.in > flow-tag.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-report.1.in > flow-report.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-mask.1.in > flow-mask.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-rptfmt.1.in > flow-rptfmt.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-log2rrd.1.in > flow-log2rrd.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-rpt2rrd.1.in > flow-rpt2rrd.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-capture.html.in > flow-capture.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-cat.html.in > flow-cat.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-dscan.html.in > flow-dscan.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-expire.html.in > flow-expire.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-fanout.html.in > flow-fanout.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-export.html.in > flow-export.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-filter.html.in > flow-filter.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-gen.html.in > flow-gen.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-import.html.in > flow-import.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-header.html.in > flow-header.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-merge.html.in > flow-merge.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-print.html.in > flow-print.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-receive.html.in > flow-receive.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-send.html.in > flow-send.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-stat.html.in > flow-stat.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-split.html.in > flow-split.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-tools.html.in > flow-tools.html BUILDSTDERR: make[1]: Leaving di+ RPM_EC=0 BUILDSTDERR: ++ jobs -p + exit 0 rectory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-xlate.html.in > flow-xlate.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-tools-examples.html.in > flow-tools-examples.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-tag.html.in > flow-tag.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-nfilter.html.in > flow-nfilter.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-mask.html.in > flow-mask.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-report.html.in > flow-report.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-rptfmt.html.in > flow-rptfmt.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-log2rrd.html.in > flow-log2rrd.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-rpt2rrd.html.in > flow-rpt2rrd.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' Making all in utils make[1]: Nothing to be done for 'all'. make[1]: Nothing to be done for 'all-am'. Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.c3Z0nB + umask 022 + cd /builddir/build/BUILD + '[' /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64 '!=' / ']' + rm -rf /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64 BUILDSTDERR: ++ dirname /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64 + mkdir -p /builddir/build/BUILDROOT + mkdir /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64 + cd flow-tools-0.68.5.1 + /usr/bin/make install DESTDIR=/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64 'INSTALL=/usr/bin/install -p' BUILDSTDERR: libtool: install: warning: remember to run `libtool --finish /usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' Making install in lib make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' test -z "/usr/lib64" || /usr/bin/mkdir -p "/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/lib64" /bin/sh ../libtool --mode=install /usr/bin/install -p libft.la '/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/lib64' libtool: install: /usr/bin/install -p .libs/libft.so.0.0.0 /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/lib64/libft.so.0.0.0 libtool: install: (cd /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/lib64 && { ln -s -f libft.so.0.0.0 libft.so.0 || { rm -f libft.so.0 && ln -s libft.so.0.0.0 libft.so.0; }; }) libtool: install: (cd /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/lib64 && { ln -s -f libft.so.0.0.0 libft.so || { rm -f libft.so && ln -s libft.so.0.0.0 libft.so; }; }) libtool: install: /usr/bin/install -p .libs/libft.lai /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/lib64/libft.la test -z "/usr/include" || /usr/bin/mkdir -p "/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/include" /usr/bin/install -p -m 644 ftlib.h ftqueue.h '/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/include' make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' Making install in src make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /usr/bin/make install-am make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[3]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' test -z "/usr/bin" || /usr/bin/mkdir -p "/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin" /bin/sh ../libtool --mode=install /usr/bin/install -p flow-capture flow-cat flow-stat flow-print flow-dscan flow-send flow-receive flow-gen flow-expire flow-filter flow-export flow-header flow-split flow-xlate flow-merge flow-import flow-fanout flow-tag flow-nfilter flow-report flow-mask '/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin' libtool: install: /usr/bin/install -p .libs/flow-capture /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-capture libtool: install: /usr/bin/install -p .libs/flow-cat /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-cat libtool: install: /usr/bin/install -p .libs/flow-stat /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-stat libtool: install: /usr/bin/install -p .libs/flow-print /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-print libtool: install: /usr/bin/install -p .libs/flow-dscan /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-dscan libtool: install: /usr/bin/install -p .libs/flow-send /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-send libtool: install: /usr/bin/install -p .libs/flow-receive /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-receive libtool: install: /usr/bin/install -p .libs/flow-gen /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-gen libtool: install: /usr/bin/install -p .libs/flow-expire /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-expire libtool: install: /usr/bin/install -p .libs/flow-filter /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-filter libtool: install: /usr/bin/install -p .libs/flow-export /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-export libtool: install: /usr/bin/install -p .libs/flow-header /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-header libtool: install: /usr/bin/install -p .libs/flow-split /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-split BUILDSTDERR: libtool: install: /usr/bin/install -p .libs/flow-xlate /builddir/build/BUILDROOT/flow-tools-0.68.5.libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' BUILDSTDERR: libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' 1-28.fc32.x86_64/usr/bin/flow-xlate libtool: install: /usr/bin/install -p .libs/flow-merge /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-merge libtool: install: /usr/bin/install -p .libs/flow-import /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-import libtool: install: /usr/bin/install -p .libs/flow-fanout /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-fanout libtool: install: /usr/bin/install -p .libs/flow-tag /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-tag libtool: install: /usr/bin/install -p .libs/flow-nfilter /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-nfilter libtool: install: /usr/bin/install -p .libs/flow-report /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-report libtool: install: /usr/bin/install -p .libs/flow-mask /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-mask make[3]: Nothing to be done for 'install-data-am'. make[3]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' Making install in bin make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/bin' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/bin' test -z "/usr/bin" || /usr/bin/mkdir -p "/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin" /usr/bin/install -p flow-log2rrd flow-rptfmt flow-rpt2rrd '/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin' make[2]: Nothing to be done for 'install-data-am'. make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/bin' make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/bin' Making install in configs make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/configs' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/configs' make[2]: Nothing to be done for 'install-exec-am'. test -z "/etc/flow-tools/cfg" || /usr/bin/mkdir -p "/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/etc/flow-tools/cfg" /usr/bin/install -p -m 644 map.cfg tag.cfg filter.cfg stat.cfg mask.cfg xlate.cfg '/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/etc/flow-tools/cfg' test -z "/etc/flow-tools/sym" || /usr/bin/mkdir -p "/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/etc/flow-tools/sym" /usr/bin/install -p -m 644 ip-prot.sym ip-type.sym tcp-port.sym asn.sym tag.sym '/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/etc/flow-tools/sym' make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/configs' make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/configs' Making install in docs make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[2]: Nothing to be done for 'install-exec-am'. test -z "/usr/share/man/man1" || /usr/bin/mkdir -p "/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/man/man1" /usr/bin/install -p -m 644 flow-capture.1 flow-cat.1 flow-dscan.1 flow-expire.1 flow-export.1 flow-fanout.1 flow-filter.1 flow-gen.1 flow-header.1 flow-import.1 flow-merge.1 flow-print.1 flow-receive.1 flow-send.1 flow-split.1 flow-stat.1 flow-tools-examples.1 flow-tools.1 flow-xlate.1 flow-tag.1 flow-nfilter.1 flow-report.1 flow-mask.1 flow-rptfmt.1 flow-log2rrd.1 flow-rpt2rrd.1 '/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/man/man1' make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' Making install in utils make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/utils' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/utils' make[2]: Nothing to be done for 'install-exec-am'. BUILDSTDERR: test -z "/usr/share/+ find /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64 -type f -name '*.la' -exec rm -f '{}' ';' + mkdir -p /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/var/flow-tools + install -d /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/lib/systemd/system + install -m 0644 /builddir/build/SOURCES/flow-capture.service /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/lib/systemd/system/flow-capture.service + install -d /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/etc/sysconfig + install -m 0644 /builddir/build/SOURCES/flow-capture.sysconfig /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/etc/sysconfig/flow-capture + /usr/lib/rpm/find-debuginfo.sh -j6 --strict-build-id -m -i --build-id-seed 0.68.5.1-28.fc32 --unique-debug-suffix -0.68.5.1-28.fc32.x86_64 --unique-debug-src-base flow-tools-0.68.5.1-28.fc32.x86_64 --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 110000000 -S debugsourcefiles.list /builddir/build/BUILD/flow-tools-0.68.5.1 flow-tools" || /usr/bin/mkdir -p "/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/flow-tools" /usr/bin/install -p asn2c gasn gprot gserv '/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/flow-tools' make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/utils' make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/utils' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1' make[2]: Nothing to be done for 'install-exec-am'. make[2]: Nothing to be done for 'install-data-am'. make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1' make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1' explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-cat explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-capture explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-expire explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-dscan explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-fanout explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-export extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-capture extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-cat extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-expire extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-dscan extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-fanout extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-export explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-filter extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-filter explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-gen explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-header explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-import explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-mask extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-gen extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-import extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-header extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-mask explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-merge extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-merge explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-nfilter extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-nfilter BUILDSTDERR: explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.3745 blocks + /usr/lib/rpm/check-buildroot + /usr/lib/rpm/redhat/brp-ldconfig + /usr/lib/rpm/brp-compress + /usr/lib/rpm/brp-strip-static-archive /usr/bin/strip + /usr/lib/rpm/redhat/brp-python-bytecompile /usr/bin/python 1 0 + /usr/lib/rpm/brp-python-hardlink + /usr/lib/rpm/redhat/brp-mangle-shebangs 5.1-28.fc32.x86_64/usr/bin/flow-print explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-receive explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-report extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-receive extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-report extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-print explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-send extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-send explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-split extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-split explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-stat explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-tag extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-stat explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-xlate extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-xlate extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/bin/flow-tag explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/lib64/libft.so.0.0.0 extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/lib64/libft.so.0.0.0 original debug info size: 2952kB, size after compression: 2728kB /usr/lib/rpm/sepdebugcrcfix: Updated 22 CRC32s, 0 CRC32s did match. Processing files: flow-tools-0.68.5.1-28.fc32.x86_64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.swSnHC + umask 022 + cd /builddir/build/BUILD + cd flow-tools-0.68.5.1 + DOCDIR=/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/doc/flow-tools + export LC_ALL=C + LC_ALL=C + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/doc/flow-tools + cp -pr README /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/doc/flow-tools + cp -pr README.fork /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/doc/flow-tools + cp -pr COPYING /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/doc/flow-tools + cp -pr ChangeLog /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/doc/flow-tools + RPM_EC=0 BUILDSTDERR: ++ jobs -p + exit 0 Provides: config(flow-tools) = 0.68.5.1-28.fc32 flow-tools = 0.68.5.1-28.fc32 flow-tools(x86-64) = 0.68.5.1-28.fc32 group(flow-tools) libft.so.0()(64bit) user(flow-tools) Requires(interp): /bin/sh /bin/sh /bin/sh /bin/sh Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires(pre): /bin/sh shadow-utils Requires(post): /bin/sh Requires(preun): /bin/sh Requires(postun): /bin/sh Requires: /usr/bin/perl /usr/bin/python3 libc.so.6()(64bit) libc.so.6(GLIBC_2.14)(64bit) libc.so.6(GLIBC_2.15)(64bit) libc.so.6(GLIBC_2.2.5)(64bit) libc.so.6(GLIBC_2.3)(64bit) libc.so.6(GLIBC_2.3.4)(64bit) libc.so.6(GLIBC_2.4)(64bit) libc.so.6(GLIBC_2.7)(64bit) libft.so.0()(64bit) libmariadb.so.3()(64bit) libmariadb.so.3(libmysqlclient_18)(64bit) libpq.so.5()(64bit) libpq.so.5(RHPG_9.6)(64bit) libz.so.1()(64bit) rtld(GNU_HASH) Processing files: flow-tools-devel-0.68.5.1-28.fc32.x86_64 Provides: flow-tools-devel = 0.68.5.1-28.fc32 flow-tools-devel(x86-64) = 0.68.5.1-28.fc32 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: libft.so.0()(64bit) Processing files: flow-tools-rrdtool-0.68.5.1-28.fc32.x86_64 Provides: flow-tools-rrdtool = 0.68.5.1-28.fc32 flow-tools-rrdtool(x86-64) = 0.68.5.1-28.fc32 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: /usr/bin/python3 Processing files: flow-tools-docs-0.68.5.1-28.fc32.x86_64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.h5AyVz + umask 022 + cd /builddir/build/BUILD + cd flow-tools-0.68.5.1 + DOCDIR=/builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/doc/flow-tools-docs + export LC_ALL=C + LC_ALL=C + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/doc/flow-tools-docs + cp -pr docs/flow-capture.html docs/flow-cat.html docs/flow-dscan.html docs/flow-expire.html docs/flow-export.html docs/flow-fanout.html docs/flow-filter.html docs/flow-gen.html docs/flow-header.html docs/flow-import.html docs/flow-log2rrd.html docs/flow-mask.html docs/flow-merge.html docs/flow-nfilter.html docs/flow-print.html docs/flow-receive.html docs/flow-report.html docs/flow-rpt2rrd.html docs/flow-rptfmt.html docs/flow-send.html docs/flow-split.html docs/flow-stat.html docs/flow-tag.html docs/flow-tools-examples.html docs/flow-tools.html docs/flow-xlate.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/doc/flow-tools-docs + cp -pr ChangeLog.old /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/doc/flow-tools-docs + cp -pr TODO /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/doc/flow-tools-docs + cp -pr INSTALL /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/doc/flow-tools-docs + cp -pr SECURITY /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64/usr/share/doc/flow-tools-docs + RPM_EC=0 BUILDSTDERR: ++ jobs -p + exit 0 Provides: flow-tools-docs = 0.68.5.1-28.fc32 flow-tools-docs(x86-64) = 0.68.5.1-28.fc32 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Processing files: flow-tools-debugsource-0.68.5.1-28.fc32.x86_64 Provides: flow-tools-debugsource = 0.68.5.1-28.fc32 flow-tools-debugsource(x86-64) = 0.68.5.1-28.fc32 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Processing files: flow-tools-debuginfo-0.68.5.1-28.fc32.x86_64 Provides: debuginfo(build-id) = 021f2a1910613a8cfee098483822b129ce293b47 debuginfo(build-id) = 0ccb0138cccecc66a1e7c180278e9f57d50405d3 debuginfo(build-id) = 175efe98fa7f6c5a0184fc84b91f1835bb704783 debuginfo(build-id) = 213021896662a4315f802b9dbe26b3b6aa52b6e2 debuginfo(build-id) = 589b57005792f0a5bcaf5d2209e9b4a8697007f1 debuginfo(build-id) = 5d72717e58525e78ae1682bc16403dd110944fd7 debuginfo(build-id) = 5f4bcfee75b4f4b3e684caa533422f8687eeadef debuginfo(build-id) = 5fbb0ed870c5b9dc0baa092760233ecfc106be58 debuginfo(build-id) = 663719508610bf06e36aac805bb24ee20bd6688e debuginfo(build-id) = 71d99796755f6807f0a0f012a3ecaf236dcbf5fe debuginfo(build-id) = 7cb28b956c8b89955e70df433f843b91b2d6ec40 debuginfo(build-id) = 8a73fafac6f090fad9fa264efa9f77d272fe4db9 debuginfo(build-id) = 993098711aae6cb72a272e46dffc0d5daf0348d3 debuginfo(build-id) = 9d566246a8985619bb57048bc1f3ead94867f4bf debuginfo(build-id) = b113617f0f1ece8e1f49a77c56ce80e3f5f5ac4e debuginfo(build-id) = b886299c63eb1872f7998b5db4684a26898cb3fa debuginfo(build-id) = d7818d5dcbbdb79fe360eaf08bc7b7a90ab591d7 debuginfo(build-id) = d8ff8d5c28c1eeab263c1e01cd85459b3512537d debuginfo(build-id) = d9433f4afa30b982a2e52740799d9794eb3f4d21 debuginfo(build-id) = e4dfcdefad27fb64aee7ae15ba1ba5852cff06ed debuginfo(build-id) = e80eb4f839224891d7ca552dfce616aa5872c58e debuginfo(build-id) = f7c5da69f817f252f64c9c0612dce9e687cc9e56 flow-tools-debuginfo = 0.68.5.1-28.fc32 flow-tools-debuginfo(x86-64) = 0.68.5.1-28.fc32 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Recommends: flow-tools-debugsource(x86-64) = 0.68.5.1-28.fc32 Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64 Wrote: /builddir/build/RPMS/flow-tools-rrdtool-0.68.5.1-28.fc32.x86_64.rpm Wrote: /builddir/build/RPMS/flow-tools-devel-0.68.5.1-28.fc32.x86_64.rpm Wrote: /builddir/build/RPMS/flow-tools-docs-0.68.5.1-28.fc32.x86_64.rpm Wrote: /builddir/build/RPMS/flow-tools-debugsource-0.68.5.1-28.fc32.x86_64.rpm Wrote: /builddir/build/RPMS/flow-tools-0.68.5.1-28.fc32.x86_64.rpm Wrote: /builddir/build/RPMS/flow-tools-debuginfo-0.68.5.1-28.fc32.x86_64.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.wIm44z + umask 022 + cd /builddir/build/BUILD + cd flow-tools-0.68.5.1 + /usr/bin/rm -rf /builddir/build/BUILDROOT/flow-tools-0.68.5.1-28.fc32.x86_64 + RPM_EC=0 BUILDSTDERR: ++ jobs -p + exit 0 Child return code was: 0