Mock Version: 1.4.21 Mock Version: 1.4.21 ENTER ['do_with_status'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target riscv64 --nodeps /builddir/build/SPECS/flow-tools.spec'], chrootPath='/var/lib/mock/f33-build-135006-41647/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': 'en_US.UTF-8'}shell=Falselogger=timeout=432000uid=987gid=135user='mockbuild'nspawn_args=[]unshare_net=TrueprintOutput=False) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target riscv64 --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': 'en_US.UTF-8'} and shell False Building target platforms: riscv64 Building for target riscv64 setting SOURCE_DATE_EPOCH=1580169600 Wrote: /builddir/build/SRPMS/flow-tools-0.68.5.1-29.fc33.src.rpm Child return code was: 0 ENTER ['do_with_status'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target riscv64 --nodeps /builddir/build/SPECS/flow-tools.spec'], chrootPath='/var/lib/mock/f33-build-135006-41647/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': 'en_US.UTF-8'}shell=Falselogger=timeout=432000uid=987gid=135user='mockbuild'nspawn_args=[]unshare_net=TrueprintOutput=False) Executing command: ['bash', '--login', '-c', '/usr/bin/rpmbuild -bb --target riscv64 --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': 'en_US.UTF-8'} and shell False Building target platforms: riscv64 Building for target riscv64 setting SOURCE_DATE_EPOCH=1580169600 Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.9Fplph + 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 . + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch + /usr/bin/cat /builddir/build/SOURCES/flow-werror-fix.patch + /usr/bin/cat /builddir/build/SOURCES/flow-tools-extern.patch + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch + 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 RefactoringTool: Skipping optional fixer: buffer RefactoringTool: Skipping optional fixer: idioms RefactoringTool: Skipping optional fixer: set_literal RefactoringTool: Skipping optional fixer: ws_comma RefactoringTool: Refactored bin/flow-log2rrd RefactoringTool: Refactored bin/flow-rpt2rrd RefactoringTool: Refactored bin/flow-rptfmt --- 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]: 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) RefactoringTool: Files that were modified: RefactoringTool: bin/flow-log2rrd RefactoringTool: bin/flow-rpt2rrd 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 ++ jobs -p + exit 0 Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.oCZFVi + 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 + LT_SYS_LIBRARY_PATH=/usr/lib64: + export LT_SYS_LIBRARY_PATH + '[' 1 = 1 ']' +++ dirname ./configure ++ find . -name config.guess -o -name config.sub + for i in $(find $(dirname ./configure) -name config.guess -o -name config.sub) ++ basename ./config.sub + '[' -f /usr/lib/rpm/redhat/config.sub ']' + /usr/bin/rm -f ./config.sub ++ basename ./config.sub + /usr/bin/cp -fv /usr/lib/rpm/redhat/config.sub ./config.sub '/usr/lib/rpm/redhat/config.sub' -> './config.sub' + for i in $(find $(dirname ./configure) -name config.guess -o -name config.sub) ++ basename ./config.guess + '[' -f /usr/lib/rpm/redhat/config.guess ']' + /usr/bin/rm -f ./config.guess ++ basename ./config.guess + /usr/bin/cp -fv /usr/lib/rpm/redhat/config.guess ./config.guess '/usr/lib/rpm/redhat/config.guess' -> './config.guess' + '[' 1 = 1 ']' + '[' x '!=' 'x-Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld' ']' ++ 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=riscv64-redhat-linux-gnu --host=riscv64-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 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... riscv64-redhat-linux-gnu checking host system type... riscv64-redhat-linux-gnu checking how to print strings... printf checking for style of include used by make... GNU checking for riscv64-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 riscv64-redhat-linux-gnu-objdump... no checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for riscv64-redhat-linux-gnu-ar... no checking for ar... ar checking for riscv64-redhat-linux-gnu-strip... no checking for strip... strip checking for riscv64-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) 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 riscv64-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 checking for zlibVersion in -lz... 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 + 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 -j4 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 -fasynchronous-unwind-tables -fstack-clash-protection' 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftencode.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftprof.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c -o libft_la-ftio.lo `test -f 'ftio.c' || echo './'`ftio.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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/inttypes.h:25, from ftinclude.h:7, from ftio.c:29: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ ftio.c: In function 'ftio_rec_swapfunc': ftio.c:1903:18: warning: variable 'd_ver' set but not used [-Wunused-but-set-variable] 1903 | uint8_t s_ver, d_ver, agg_ver, agg_method; | ^~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/inttypes.h:25, from ftinclude.h:7, from bit1024.c:29: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/inttypes.h:25, from ftinclude.h:7, from fmt.c:29: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftdecode.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-protection -c support.c -fPIC -DPIC -o .libs/libft_la-support.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' In file included from /usr/include/inttypes.h:25, from ftinclude.h:7, from support.c:29: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from fttlv.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftfile.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ ftfile.c: In function 'ftfile_loadfile': ftfile.c:116:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation] 116 | if (flags & FT_FILE_CHECKNAMES) | ^~ ftfile.c:125:7: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' 125 | if (flags & FT_FILE_SKIPTMP) | ^~ ftfile.c: In function 'load_dir': ftfile.c:629:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation] 629 | if (dirent->d_name[0] == '.') | ^~ ftfile.c:632:7: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' 632 | if (dirent->d_name[1] == '.') | ^~ ftfile.c: In function 'ftfile_loaddir': ftfile.c:247:5: warning: ignoring return value of 'fchdir' declared with attribute 'warn_unused_result' [-Wunused-result] 247 | fchdir(here); | ^~~~~~~~~~~~ ftfile.c: In function 'ftfile_mkpath': 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=] 567 | sprintf(buf, "%2.2d/%2.2d-%2.2d", (int)tm->tm_year+1900, | ^~~~~ ftfile.c:567:18: note: directive argument in the range [-2147483647, 2147483647] 567 | sprintf(buf, "%2.2d/%2.2d-%2.2d", (int)tm->tm_year+1900, | ^~~~~~~~~~~~~~~~~~~ In file included from /usr/include/stdio.h:871, from ftlib.h:42, from ftfile.c:30: /usr/include/bits/stdio2.h:36:10: note: '__builtin___sprintf_chk' output between 9 and 36 bytes into a destination of size 32 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 37 | __bos (__s), __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 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=] 567 | sprintf(buf, "%2.2d/%2.2d-%2.2d", (int)tm->tm_year+1900, | ^~~~~ ftfile.c:567:18: note: directive argument in the range [-2147483647, 2147483647] 567 | sprintf(buf, "%2.2d/%2.2d-%2.2d", (int)tm->tm_year+1900, | ^~~~~~~~~~~~~~~~~~~ In file included from /usr/include/stdio.h:871, from ftlib.h:42, from ftfile.c:30: /usr/include/bits/stdio2.h:36:10: note: '__builtin___sprintf_chk' output between 9 and 36 bytes into a destination of size 32 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 37 | __bos (__s), __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 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=] 562 | sprintf(buf, "%2.2d-%2.2d/%2.2d-%2.2d-%2.2d", | ^~~~~ ftfile.c:562:18: note: directive argument in the range [-2147481748, 2147483647] 562 | sprintf(buf, "%2.2d-%2.2d/%2.2d-%2.2d-%2.2d", | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftfile.c:562:18: note: directive argument in the range [-2147483647, 2147483647] In file included from /usr/include/stdio.h:871, from ftlib.h:42, from ftfile.c:30: /usr/include/bits/stdio2.h:36:10: note: '__builtin___sprintf_chk' output between 15 and 60 bytes into a destination of size 32 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 37 | __bos (__s), __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 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=] 585 | sprintf(buf, "%2.2d/%2.2d-%2.2d/%2.2d-%2.2d-%2.2d", (int)tm->tm_year+1900, | ^~~~~ ftfile.c:585:18: note: directive argument in the range [-2147483647, 2147483647] 585 | sprintf(buf, "%2.2d/%2.2d-%2.2d/%2.2d-%2.2d-%2.2d", (int)tm->tm_year+1900, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftfile.c:585:18: note: directive argument in the range [-2147481748, 2147483647] ftfile.c:585:18: note: directive argument in the range [-2147483647, 2147483647] In file included from /usr/include/stdio.h:871, from ftlib.h:42, from ftfile.c:30: /usr/include/bits/stdio2.h:36:10: note: '__builtin___sprintf_chk' output between 18 and 72 bytes into a destination of size 32 36 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 37 | __bos (__s), __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftmap.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ ftmap.c: In function 'ftmap_ifalias_free': ftmap.c:210:3: warning: this 'if' clause does not guard... [-Wmisleading-indentation] 210 | if (ftmia->ifIndex_list) | ^~ ftmap.c:213:5: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' 213 | free (ftmia); | ^~~~ In file included from /usr/include/string.h:495, from ftmap.c:54: In function 'strcpy', inlined from 'ftmap_ifalias_new' at ftmap.c:173:3: /usr/include/bits/string_fortified.h:90:10: warning: '__builtin_strcpy' writing one too many bytes into a region of a size that depends on 'strlen' [-Wstringop-overflow=] 90 | return __builtin___strcpy_chk (__dest, __src, __bos (__dest)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftmap.c: In function 'ftmap_ifalias_new': ftmap.c:165:23: note: at offset 0 to an object allocated by 'malloc' here 165 | if (!(ftmia->name = malloc(n))) | ^~~~~~~~~ In file included from /usr/include/string.h:495, from ftmap.c:54: In function 'strcpy', inlined from 'ftmap_ifname_new' at ftmap.c:267:3: /usr/include/bits/string_fortified.h:90:10: warning: '__builtin_strcpy' writing one too many bytes into a region of a size that depends on 'strlen' [-Wstringop-overflow=] 90 | return __builtin___strcpy_chk (__dest, __src, __bos (__dest)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftmap.c: In function 'ftmap_ifname_new': ftmap.c:262:23: note: at offset 0 to an object allocated by 'malloc' here 262 | if (!(ftmin->name = malloc(n))) | ^~~~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from fterr.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ fterr.c: In function 'fterr_info': fterr.c:109:29: warning: '%s' directive output may be truncated writing up to 1024 bytes into a region of size 1022 [-Wformat-truncation=] 109 | snprintf(buf2, 1024, "%s: %s", fterr_id, buf); | ^~ ~~~ In file included from /usr/include/stdio.h:871, from ftlib.h:42, from fterr.c:30: /usr/include/bits/stdio2.h:67:10: note: '__builtin___snprintf_chk' output 3 or more bytes (assuming 1027) into a destination of size 1024 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 68 | __bos (__s), __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fterr.c: In function 'fterr_err': fterr.c:131:31: warning: '%s' directive output may be truncated writing up to 1024 bytes into a region of size 1022 [-Wformat-truncation=] 131 | snprintf(buf2, 1024, "%s: %s: %s", fterr_id, buf, strerror(errno)); | ^~ ~~~ In file included from /usr/include/stdio.h:871, from ftlib.h:42, from fterr.c:30: /usr/include/bits/stdio2.h:67:10: note: '__builtin___snprintf_chk' output 5 or more bytes (assuming 1029) into a destination of size 1024 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 68 | __bos (__s), __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fterr.c:136:29: warning: ': ' directive output may be truncated writing 2 bytes into a region of size between 0 and 1024 [-Wformat-truncation=] 136 | snprintf(buf2, 1024, "%s: %s", buf, strerror(errno)); | ^~ In file included from /usr/include/stdio.h:871, from ftlib.h:42, from fterr.c:30: /usr/include/bits/stdio2.h:67:10: note: '__builtin___snprintf_chk' output 3 or more bytes (assuming 1027) into a destination of size 1024 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 68 | __bos (__s), __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fterr.c: In function 'fterr_errx': fterr.c:157:31: warning: '%s' directive output may be truncated writing up to 1024 bytes into a region of size 1022 [-Wformat-truncation=] 157 | snprintf(buf2, 1024, "%s: %s", fterr_id, buf); | ^~ ~~~ In file included from /usr/include/stdio.h:871, from ftlib.h:42, from fterr.c:30: /usr/include/bits/stdio2.h:67:10: note: '__builtin___snprintf_chk' output 3 or more bytes (assuming 1027) into a destination of size 1024 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 68 | __bos (__s), __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fterr.c: In function 'fterr_warnx': fterr.c:181:31: warning: '%s' directive output may be truncated writing up to 1024 bytes into a region of size 1022 [-Wformat-truncation=] 181 | snprintf(buf2, 1024, "%s: %s", fterr_id, buf); | ^~ ~~~ In file included from /usr/include/stdio.h:871, from ftlib.h:42, from fterr.c:30: /usr/include/bits/stdio2.h:67:10: note: '__builtin___snprintf_chk' output 3 or more bytes (assuming 1027) into a destination of size 1024 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 68 | __bos (__s), __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fterr.c: In function 'fterr_warn': fterr.c:202:31: warning: '%s' directive output may be truncated writing up to 1024 bytes into a region of size 1022 [-Wformat-truncation=] 202 | snprintf(buf2, 1024, "%s: %s: %s", fterr_id, buf, strerror(errno)); | ^~ ~~~ In file included from /usr/include/stdio.h:871, from ftlib.h:42, from fterr.c:30: /usr/include/bits/stdio2.h:67:10: note: '__builtin___snprintf_chk' output 5 or more bytes (assuming 1029) into a destination of size 1024 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 68 | __bos (__s), __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fterr.c:207:29: warning: ': ' directive output may be truncated writing 2 bytes into a region of size between 0 and 1024 [-Wformat-truncation=] 207 | snprintf(buf2, 1024, "%s: %s", buf, strerror(errno)); | ^~ In file included from /usr/include/stdio.h:871, from ftlib.h:42, from fterr.c:30: /usr/include/bits/stdio2.h:67:10: note: '__builtin___snprintf_chk' output 3 or more bytes (assuming 1027) into a destination of size 1024 67 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 68 | __bos (__s), __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftswap.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ ftswap.c: In function 'ftpdu_swap': ftswap.c:43:20: warning: variable 'agg_version' set but not used [-Wunused-but-set-variable] 43 | char agg_method, agg_version; | ^~~~~~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftchash.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftrec.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/inttypes.h:25, from ftsym.c:32: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from radix.c:42: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from fttag.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/bits/libc-header-start.h:33, from /usr/include/stdio.h:27, from getdate.y:33: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c -o libft_la-ftxfield.lo `test -f 'ftxfield.c' || echo './'`ftxfield.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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftxfield.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftmask.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ ftmask.c: In function 'ftmask_def_find': ftmask.c:298:7: warning: variable 'found' set but not used [-Wunused-but-set-variable] 298 | int found; | ^~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-protection -c ftvar.c -fPIC -DPIC -o .libs/libft_la-ftvar.o In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftvar.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ ftvar.c: In function 'ftvar_free': ftvar.c:81:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation] 81 | if (ftve->val); | ^~ ftvar.c:82:7: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' 82 | free(ftve->val); | ^~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/inttypes.h:25, from ftinclude.h:7, from ftfil.c:29: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ ftfil.c: In function 'ftfil_def_find': ftfil.c:2784:7: warning: variable 'found' set but not used [-Wunused-but-set-variable] 2784 | int found; | ^~~~~ ftfil.c: In function 'resolve_primitives': ftfil.c:3376:13: warning: this 'if' clause does not guard... [-Wmisleading-indentation] 3376 | if ((type == FT_FIL_DEFINITION_MATCH_IP_NEXT_HOP_ADDR) || | ^~ ftfil.c:3382:15: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' 3382 | break; | ^~~~~ ftfil.c:3385:13: warning: this 'if' clause does not guard... [-Wmisleading-indentation] 3385 | if ((type == FT_FIL_DEFINITION_MATCH_IP_NEXT_HOP_ADDR) || | ^~ ftfil.c:3391:15: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' 3391 | break; | ^~~~~ ftfil.c:3394:13: warning: this 'if' clause does not guard... [-Wmisleading-indentation] 3394 | if ((type == FT_FIL_DEFINITION_MATCH_IP_NEXT_HOP_ADDR) || | ^~ ftfil.c:3400:15: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if' 3400 | break; | ^~~~~ ftfil.c: In function 'ftfil_load_lookup': ftfil.c:5047:13: warning: 'deny' may be used uninitialized in this function [-Wmaybe-uninitialized] 5047 | list[i] = flag; | ~~~~~~~~^~~~~~ ftfil.c: In function 'parse_definition_match': ftfil.c:2989:7: warning: 'ftm' may be used uninitialized in this function [-Wmaybe-uninitialized] 2989 | free(ftm); | ^~~~~~~~~ ftfil.c: In function 'ftfil_load': ftfil.c:3491:20: warning: 'eval' may be used uninitialized in this function [-Wmaybe-uninitialized] 3491 | ftmi->eval = eval; | ~~~~~~~~~~~^~~~~~ ftfil.c:3062:9: note: 'eval' was declared here 3062 | void *eval; | ^~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-protection -c ftxlate.c -fPIC -DPIC -o .libs/libft_la-ftxlate.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftxlate.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ ftxlate.c: In function 'cryptopan_anon': ftxlate.c:2111:7: warning: variable 'i' set but not used [-Wunused-but-set-variable] 2111 | int i, pos; | ^ ftxlate.c: In function 'eval_ip_dst_addr_anon': ftxlate.c:2162:27: warning: 'rin_output[0]' is used uninitialized in this function [-Wuninitialized] 2162 | result |= (rin_output[0] >> 7) << (31-pos); | ~~~~~~~~~~^~~ ftxlate.c: In function 'eval_ip_src_addr_anon': ftxlate.c:2162:27: warning: 'rin_output[0]' is used uninitialized in this function [-Wuninitialized] 2162 | result |= (rin_output[0] >> 7) << (31-pos); | ~~~~~~~~~~^~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-protection -c ftstat.c -fPIC -DPIC -o .libs/libft_la-ftstat.o In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftstat.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ ftstat.c: In function 'ftstat_def_find': ftstat.c:2948:7: warning: variable 'found' set but not used [-Wunused-but-set-variable] 2948 | int found; | ^~~~~ ftstat.c: In function 'chash_c32_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:12657:3: note: in expansion of macro 'CHASH_DUMP_INIT' 12657 | CHASH_DUMP_INIT(ftchash_rec_c32, ftch_recc32); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_c322_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:12721:3: note: in expansion of macro 'CHASH_DUMP_INIT' 12721 | CHASH_DUMP_INIT(ftchash_rec_c322, ftch_recc322); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_c162_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:12800:3: note: in expansion of macro 'CHASH_DUMP_INIT' 12800 | CHASH_DUMP_INIT(ftchash_rec_c162, ftch_recc162); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_c163_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:12879:3: note: in expansion of macro 'CHASH_DUMP_INIT' 12879 | CHASH_DUMP_INIT(ftchash_rec_c163, ftch_recc163); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_c164_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:12972:3: note: in expansion of macro 'CHASH_DUMP_INIT' 12972 | CHASH_DUMP_INIT(ftchash_rec_c164, ftch_recc164); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_ip_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:13081:3: note: in expansion of macro 'CHASH_DUMP_INIT' 13081 | CHASH_DUMP_INIT(ftchash_rec_c32, ftch_recc32); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefix_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:13135:3: note: in expansion of macro 'CHASH_DUMP_INIT' 13135 | CHASH_DUMP_INIT(ftchash_rec_prefix, ftch_recprefix); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefix_tag_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:13194:3: note: in expansion of macro 'CHASH_DUMP_INIT' 13194 | CHASH_DUMP_INIT(ftchash_rec_prefix_tag, ftch_recprefix_tag); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefix2tag2_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:13271:3: note: in expansion of macro 'CHASH_DUMP_INIT' 13271 | CHASH_DUMP_INIT(ftchash_rec_prefix2tag2, ftch_recprefix2tag2); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefixh_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:13376:3: note: in expansion of macro 'CHASH_DUMP_INIT' 13376 | CHASH_DUMP_INIT(ftchash_rec_prefixh, ftch_recprefixh); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefix2_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:13456:3: note: in expansion of macro 'CHASH_DUMP_INIT' 13456 | CHASH_DUMP_INIT(ftchash_rec_prefix2, ftch_recprefix2); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefix16_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:13531:3: note: in expansion of macro 'CHASH_DUMP_INIT' 13531 | CHASH_DUMP_INIT(ftchash_rec_prefix16, ftch_recprefix16); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefix162_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:13608:3: note: in expansion of macro 'CHASH_DUMP_INIT' 13608 | CHASH_DUMP_INIT(ftchash_rec_prefix162, ftch_recprefix162); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefix216_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:13704:3: note: in expansion of macro 'CHASH_DUMP_INIT' 13704 | CHASH_DUMP_INIT(ftchash_rec_prefix216, ftch_recprefix216); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefix2162_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:13797:3: note: in expansion of macro 'CHASH_DUMP_INIT' 13797 | CHASH_DUMP_INIT(ftchash_rec_prefix2162, ftch_recprefix2162); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_c64_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:13903:3: note: in expansion of macro 'CHASH_DUMP_INIT' 13903 | CHASH_DUMP_INIT(ftchash_rec_c64, ftch_recc64); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_int_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:13958:3: note: in expansion of macro 'CHASH_DUMP_INIT' 13958 | CHASH_DUMP_INIT(ftchash_rec_int, ftch_recint); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_flow1_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:14047:3: note: in expansion of macro 'CHASH_DUMP_INIT' 14047 | CHASH_DUMP_INIT(ftchash_rec_flow1, ftch_recflow1); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_flow12_dump': ftstat.c:153:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 153 | char fmt_buf1[32], fmt_buf[1024];\ | ^~~~~~~~ ftstat.c:14174:3: note: in expansion of macro 'CHASH_DUMP_INIT' 14174 | CHASH_DUMP_INIT(ftchash_rec_flow1, ftch_recflow1); | ^~~~~~~~~~~~~~~ ftstat.c: In function 'bucket_dump1': ftstat.c:14279:8: warning: variable 'fmt_buf1' set but not used [-Wunused-but-set-variable] 14279 | char fmt_buf1[32], fmt_buf[1024]; | ^~~~~~~~ ftstat.c: In function 'ftstat_rpt_3_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:5217:3: note: in expansion of macro 'STD_ACCUM_HASH1' 5217 | STD_ACCUM_HASH1(ftstat_rpt_3, rpt3, ftchash_rec_c32, ftch_recc32, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:5217:3: note: in expansion of macro 'STD_ACCUM_HASH1' 5217 | STD_ACCUM_HASH1(ftstat_rpt_3, rpt3, ftchash_rec_c32, ftch_recc32, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_4_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:5295:3: note: in expansion of macro 'STD_ACCUM_HASH1' 5295 | STD_ACCUM_HASH1(ftstat_rpt_4, rpt4, ftchash_rec_c64, ftch_recc64, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:5295:3: note: in expansion of macro 'STD_ACCUM_HASH1' 5295 | STD_ACCUM_HASH1(ftstat_rpt_4, rpt4, ftchash_rec_c64, ftch_recc64, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_5_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:5374:3: note: in expansion of macro 'STD_ACCUM_HASH1' 5374 | STD_ACCUM_HASH1(ftstat_rpt_5, rpt5, ftchash_rec_c64, ftch_recc64, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:5374:3: note: in expansion of macro 'STD_ACCUM_HASH1' 5374 | STD_ACCUM_HASH1(ftstat_rpt_5, rpt5, ftchash_rec_c64, ftch_recc64, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_8_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:5600:3: note: in expansion of macro 'STD_ACCUM_HASH1' 5600 | STD_ACCUM_HASH1(ftstat_rpt_8, rpt8, ftchash_rec_c162, ftch_recc162, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:5600:3: note: in expansion of macro 'STD_ACCUM_HASH1' 5600 | STD_ACCUM_HASH1(ftstat_rpt_8, rpt8, ftchash_rec_c162, ftch_recc162, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_9_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:5685:3: note: in expansion of macro 'STD_ACCUM_HASH1' 5685 | STD_ACCUM_HASH1(ftstat_rpt_9, rpt9, ftchash_rec_c64, ftch_recc64, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:5685:3: note: in expansion of macro 'STD_ACCUM_HASH1' 5685 | STD_ACCUM_HASH1(ftstat_rpt_9, rpt9, ftchash_rec_c64, ftch_recc64, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_10_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:5766:3: note: in expansion of macro 'STD_ACCUM_HASH1' 5766 | STD_ACCUM_HASH1(ftstat_rpt_10, rpt10, ftchash_rec_c64, ftch_recc64, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:5766:3: note: in expansion of macro 'STD_ACCUM_HASH1' 5766 | STD_ACCUM_HASH1(ftstat_rpt_10, rpt10, ftchash_rec_c64, ftch_recc64, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_14_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:6086:3: note: in expansion of macro 'STD_ACCUM_HASH1' 6086 | STD_ACCUM_HASH1(ftstat_rpt_14, rpt14, ftchash_rec_c32, ftch_recc32, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:6086:3: note: in expansion of macro 'STD_ACCUM_HASH1' 6086 | STD_ACCUM_HASH1(ftstat_rpt_14, rpt14, ftchash_rec_c32, ftch_recc32, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_18_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:6454:3: note: in expansion of macro 'STD_ACCUM_HASH1' 6454 | STD_ACCUM_HASH1(ftstat_rpt_18, rpt18, ftchash_rec_c32, ftch_recc32, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:6454:3: note: in expansion of macro 'STD_ACCUM_HASH1' 6454 | STD_ACCUM_HASH1(ftstat_rpt_18, rpt18, ftchash_rec_c32, ftch_recc32, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_21_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:6681:3: note: in expansion of macro 'STD_ACCUM_HASH1' 6681 | STD_ACCUM_HASH1(ftstat_rpt_21, rpt21, ftchash_rec_c162, ftch_recc162, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:6681:3: note: in expansion of macro 'STD_ACCUM_HASH1' 6681 | STD_ACCUM_HASH1(ftstat_rpt_21, rpt21, ftchash_rec_c162, ftch_recc162, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_24_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:6915:3: note: in expansion of macro 'STD_ACCUM_HASH1' 6915 | STD_ACCUM_HASH1(ftstat_rpt_24, rpt24, ftchash_rec_c162, ftch_recc162, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:6915:3: note: in expansion of macro 'STD_ACCUM_HASH1' 6915 | STD_ACCUM_HASH1(ftstat_rpt_24, rpt24, ftchash_rec_c162, ftch_recc162, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_39_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8433:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8433 | STD_ACCUM_HASH1(ftstat_rpt_39, rpt39, ftchash_rec_c162, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8433:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8433 | STD_ACCUM_HASH1(ftstat_rpt_39, rpt39, ftchash_rec_c162, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_40_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8517:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8517 | STD_ACCUM_HASH1(ftstat_rpt_40, rpt40, ftchash_rec_c162, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8517:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8517 | STD_ACCUM_HASH1(ftstat_rpt_40, rpt40, ftchash_rec_c162, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_41_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8601:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8601 | STD_ACCUM_HASH1(ftstat_rpt_41, rpt41, ftchash_rec_c162, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8601:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8601 | STD_ACCUM_HASH1(ftstat_rpt_41, rpt41, ftchash_rec_c162, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_42_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8685:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8685 | STD_ACCUM_HASH1(ftstat_rpt_42, rpt42, ftchash_rec_c162, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8685:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8685 | STD_ACCUM_HASH1(ftstat_rpt_42, rpt42, ftchash_rec_c162, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_43_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8771:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8771 | STD_ACCUM_HASH1(ftstat_rpt_43, rpt43, ftchash_rec_c163, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8771:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8771 | STD_ACCUM_HASH1(ftstat_rpt_43, rpt43, ftchash_rec_c163, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_44_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8856:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8856 | STD_ACCUM_HASH1(ftstat_rpt_44, rpt44, ftchash_rec_c163, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8856:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8856 | STD_ACCUM_HASH1(ftstat_rpt_44, rpt44, ftchash_rec_c163, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_45_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8941:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8941 | STD_ACCUM_HASH1(ftstat_rpt_45, rpt45, ftchash_rec_c164, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8941:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8941 | STD_ACCUM_HASH1(ftstat_rpt_45, rpt45, ftchash_rec_c164, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_48_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9180:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9180 | STD_ACCUM_HASH1(ftstat_rpt_48, rpt48, ftchash_rec_c32, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9180:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9180 | STD_ACCUM_HASH1(ftstat_rpt_48, rpt48, ftchash_rec_c32, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_49_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9260:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9260 | STD_ACCUM_HASH1(ftstat_rpt_49, rpt49, ftchash_rec_c32, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9260:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9260 | STD_ACCUM_HASH1(ftstat_rpt_49, rpt49, ftchash_rec_c32, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_50_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9340:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9340 | STD_ACCUM_HASH1(ftstat_rpt_50, rpt50, ftchash_rec_c322, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9340:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9340 | STD_ACCUM_HASH1(ftstat_rpt_50, rpt50, ftchash_rec_c322, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_76_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:12097:3: note: in expansion of macro 'STD_ACCUM_HASH1' 12097 | STD_ACCUM_HASH1(ftstat_rpt_76, rpt76, ftchash_rec_c32, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:12097:3: note: in expansion of macro 'STD_ACCUM_HASH1' 12097 | STD_ACCUM_HASH1(ftstat_rpt_76, rpt76, ftchash_rec_c32, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_77_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:12175:3: note: in expansion of macro 'STD_ACCUM_HASH1' 12175 | STD_ACCUM_HASH1(ftstat_rpt_77, rpt77, ftchash_rec_c32, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:12175:3: note: in expansion of macro 'STD_ACCUM_HASH1' 12175 | STD_ACCUM_HASH1(ftstat_rpt_77, rpt77, ftchash_rec_c32, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_78_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:12253:3: note: in expansion of macro 'STD_ACCUM_HASH1' 12253 | STD_ACCUM_HASH1(ftstat_rpt_78, rpt78, ftchash_rec_c32, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:12253:3: note: in expansion of macro 'STD_ACCUM_HASH1' 12253 | STD_ACCUM_HASH1(ftstat_rpt_78, rpt78, ftchash_rec_c32, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_15_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:6166:3: note: in expansion of macro 'STD_ACCUM_HASH1' 6166 | STD_ACCUM_HASH1(ftstat_rpt_15, rpt15, ftchash_rec_prefix, ftch_recprefix, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:6166:3: note: in expansion of macro 'STD_ACCUM_HASH1' 6166 | STD_ACCUM_HASH1(ftstat_rpt_15, rpt15, ftchash_rec_prefix, ftch_recprefix, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_16_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:6258:3: note: in expansion of macro 'STD_ACCUM_HASH1' 6258 | STD_ACCUM_HASH1(ftstat_rpt_16, rpt16, ftchash_rec_prefix, ftch_recprefix, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:6258:3: note: in expansion of macro 'STD_ACCUM_HASH1' 6258 | STD_ACCUM_HASH1(ftstat_rpt_16, rpt16, ftchash_rec_prefix, ftch_recprefix, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_17_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:6350:3: note: in expansion of macro 'STD_ACCUM_HASH1' 6350 | STD_ACCUM_HASH1(ftstat_rpt_17, rpt17, ftchash_rec_prefix2, ftch_recprefix2, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:6350:3: note: in expansion of macro 'STD_ACCUM_HASH1' 6350 | STD_ACCUM_HASH1(ftstat_rpt_17, rpt17, ftchash_rec_prefix2, ftch_recprefix2, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_25_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:6999:3: note: in expansion of macro 'STD_ACCUM_HASH1' 6999 | STD_ACCUM_HASH1(ftstat_rpt_25, rpt25, ftchash_rec_prefix16, ftch_recprefix16, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:6999:3: note: in expansion of macro 'STD_ACCUM_HASH1' 6999 | STD_ACCUM_HASH1(ftstat_rpt_25, rpt25, ftchash_rec_prefix16, ftch_recprefix16, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_26_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7094:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7094 | STD_ACCUM_HASH1(ftstat_rpt_26, rpt26, ftchash_rec_prefix16, ftch_recprefix16, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7094:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7094 | STD_ACCUM_HASH1(ftstat_rpt_26, rpt26, ftchash_rec_prefix16, ftch_recprefix16, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_27_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7189:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7189 | STD_ACCUM_HASH1(ftstat_rpt_26, rpt26, ftchash_rec_prefix16, ftch_recprefix16, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7189:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7189 | STD_ACCUM_HASH1(ftstat_rpt_26, rpt26, ftchash_rec_prefix16, ftch_recprefix16, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_28_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7285:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7285 | STD_ACCUM_HASH1(ftstat_rpt_28, rpt28, ftchash_rec_prefix16, ftch_recprefix16, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7285:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7285 | STD_ACCUM_HASH1(ftstat_rpt_28, rpt28, ftchash_rec_prefix16, ftch_recprefix16, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_29_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7380:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7380 | STD_ACCUM_HASH1(ftstat_rpt_29, rpt29, ftchash_rec_prefix216, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7380:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7380 | STD_ACCUM_HASH1(ftstat_rpt_29, rpt29, ftchash_rec_prefix216, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_30_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7490:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7490 | STD_ACCUM_HASH1(ftstat_rpt_30, rpt30, ftchash_rec_prefix216, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7490:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7490 | STD_ACCUM_HASH1(ftstat_rpt_30, rpt30, ftchash_rec_prefix216, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_31_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7600:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7600 | STD_ACCUM_HASH1(ftstat_rpt_31, rpt31, ftchash_rec_prefix2162, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7600:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7600 | STD_ACCUM_HASH1(ftstat_rpt_31, rpt31, ftchash_rec_prefix2162, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_32_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7716:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7716 | STD_ACCUM_HASH1(ftstat_rpt_32, rpt32, ftchash_rec_prefix16, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7716:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7716 | STD_ACCUM_HASH1(ftstat_rpt_32, rpt32, ftchash_rec_prefix16, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_33_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7811:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7811 | STD_ACCUM_HASH1(ftstat_rpt_33, rpt33, ftchash_rec_prefix16, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7811:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7811 | STD_ACCUM_HASH1(ftstat_rpt_33, rpt33, ftchash_rec_prefix16, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_34_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7903:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7903 | STD_ACCUM_HASH1(ftstat_rpt_33, rpt33, ftchash_rec_prefix16, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7903:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7903 | STD_ACCUM_HASH1(ftstat_rpt_33, rpt33, ftchash_rec_prefix16, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_35_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7998:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7998 | STD_ACCUM_HASH1(ftstat_rpt_35, rpt35, ftchash_rec_prefix16, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:7998:3: note: in expansion of macro 'STD_ACCUM_HASH1' 7998 | STD_ACCUM_HASH1(ftstat_rpt_35, rpt35, ftchash_rec_prefix16, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_36_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8093:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8093 | STD_ACCUM_HASH1(ftstat_rpt_36, rpt36, ftchash_rec_prefix216, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8093:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8093 | STD_ACCUM_HASH1(ftstat_rpt_36, rpt36, ftchash_rec_prefix216, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_37_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8205:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8205 | STD_ACCUM_HASH1(ftstat_rpt_37, rpt37, ftchash_rec_prefix216, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8205:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8205 | STD_ACCUM_HASH1(ftstat_rpt_37, rpt37, ftchash_rec_prefix216, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_38_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8317:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8317 | STD_ACCUM_HASH1(ftstat_rpt_38, rpt38, ftchash_rec_prefix2162, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:8317:3: note: in expansion of macro 'STD_ACCUM_HASH1' 8317 | STD_ACCUM_HASH1(ftstat_rpt_38, rpt38, ftchash_rec_prefix2162, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_51_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9422:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9422 | STD_ACCUM_HASH1(ftstat_rpt_51, rpt51, ftchash_rec_prefix16, ftch_recprefix16, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9422:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9422 | STD_ACCUM_HASH1(ftstat_rpt_51, rpt51, ftchash_rec_prefix16, ftch_recprefix16, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_52_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9515:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9515 | STD_ACCUM_HASH1(ftstat_rpt_52, rpt52, ftchash_rec_prefix16, ftch_recprefix16, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9515:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9515 | STD_ACCUM_HASH1(ftstat_rpt_52, rpt52, ftchash_rec_prefix16, ftch_recprefix16, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_53_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9607:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9607 | STD_ACCUM_HASH1(ftstat_rpt_53, rpt53, ftchash_rec_prefix16, ftch_recprefix16, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9607:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9607 | STD_ACCUM_HASH1(ftstat_rpt_53, rpt53, ftchash_rec_prefix16, ftch_recprefix16, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_54_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9700:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9700 | STD_ACCUM_HASH1(ftstat_rpt_54, rpt54, ftchash_rec_prefix16, ftch_recprefix16, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9700:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9700 | STD_ACCUM_HASH1(ftstat_rpt_54, rpt54, ftchash_rec_prefix16, ftch_recprefix16, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_55_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9793:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9793 | STD_ACCUM_HASH1(ftstat_rpt_55, rpt55, ftchash_rec_prefix162, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9793:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9793 | STD_ACCUM_HASH1(ftstat_rpt_55, rpt55, ftchash_rec_prefix162, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_56_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9891:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9891 | STD_ACCUM_HASH1(ftstat_rpt_56, rpt56, ftchash_rec_prefix162, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9891:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9891 | STD_ACCUM_HASH1(ftstat_rpt_56, rpt56, ftchash_rec_prefix162, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_57_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9989:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9989 | STD_ACCUM_HASH1(ftstat_rpt_57, rpt57, ftchash_rec_prefix216, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:9989:3: note: in expansion of macro 'STD_ACCUM_HASH1' 9989 | STD_ACCUM_HASH1(ftstat_rpt_57, rpt57, ftchash_rec_prefix216, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_58_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:10099:3: note: in expansion of macro 'STD_ACCUM_HASH1' 10099 | STD_ACCUM_HASH1(ftstat_rpt_58, rpt58, ftchash_rec_prefix216, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:10099:3: note: in expansion of macro 'STD_ACCUM_HASH1' 10099 | STD_ACCUM_HASH1(ftstat_rpt_58, rpt58, ftchash_rec_prefix216, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_59_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:10211:3: note: in expansion of macro 'STD_ACCUM_HASH1' 10211 | STD_ACCUM_HASH1(ftstat_rpt_59, rpt59, ftchash_rec_prefix2162, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:10211:3: note: in expansion of macro 'STD_ACCUM_HASH1' 10211 | STD_ACCUM_HASH1(ftstat_rpt_59, rpt59, ftchash_rec_prefix2162, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_60_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:10325:3: note: in expansion of macro 'STD_ACCUM_HASH1' 10325 | STD_ACCUM_HASH1(ftstat_rpt_60, rpt60, ftchash_rec_prefix162, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:10325:3: note: in expansion of macro 'STD_ACCUM_HASH1' 10325 | STD_ACCUM_HASH1(ftstat_rpt_60, rpt60, ftchash_rec_prefix162, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_61_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:10423:3: note: in expansion of macro 'STD_ACCUM_HASH1' 10423 | STD_ACCUM_HASH1(ftstat_rpt_61, rpt61, ftchash_rec_prefix162, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:10423:3: note: in expansion of macro 'STD_ACCUM_HASH1' 10423 | STD_ACCUM_HASH1(ftstat_rpt_61, rpt61, ftchash_rec_prefix162, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_62_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:10521:3: note: in expansion of macro 'STD_ACCUM_HASH1' 10521 | STD_ACCUM_HASH1(ftstat_rpt_62, rpt62, ftchash_rec_prefix162, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:10521:3: note: in expansion of macro 'STD_ACCUM_HASH1' 10521 | STD_ACCUM_HASH1(ftstat_rpt_62, rpt62, ftchash_rec_prefix162, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_63_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:10617:3: note: in expansion of macro 'STD_ACCUM_HASH1' 10617 | STD_ACCUM_HASH1(ftstat_rpt_63, rpt63, ftchash_rec_prefix162, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:10617:3: note: in expansion of macro 'STD_ACCUM_HASH1' 10617 | STD_ACCUM_HASH1(ftstat_rpt_63, rpt63, ftchash_rec_prefix162, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_64_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:10714:3: note: in expansion of macro 'STD_ACCUM_HASH1' 10714 | STD_ACCUM_HASH1(ftstat_rpt_64, rpt64, ftchash_rec_prefix, ftch_recprefix, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:10714:3: note: in expansion of macro 'STD_ACCUM_HASH1' 10714 | STD_ACCUM_HASH1(ftstat_rpt_64, rpt64, ftchash_rec_prefix, ftch_recprefix, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_66_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:10906:3: note: in expansion of macro 'STD_ACCUM_HASH1' 10906 | STD_ACCUM_HASH1(ftstat_rpt_66, rpt66, ftchash_rec_prefixh, ftch_recprefixh, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:10906:3: note: in expansion of macro 'STD_ACCUM_HASH1' 10906 | STD_ACCUM_HASH1(ftstat_rpt_66, rpt66, ftchash_rec_prefixh, ftch_recprefixh, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_67_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:11077:3: note: in expansion of macro 'STD_ACCUM_HASH1' 11077 | STD_ACCUM_HASH1(ftstat_rpt_67, rpt67, ftchash_rec_prefixh, ftch_recprefixh, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:11077:3: note: in expansion of macro 'STD_ACCUM_HASH1' 11077 | STD_ACCUM_HASH1(ftstat_rpt_67, rpt67, ftchash_rec_prefixh, ftch_recprefixh, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_68_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:11247:3: note: in expansion of macro 'STD_ACCUM_HASH1' 11247 | STD_ACCUM_HASH1(ftstat_rpt_68, rpt68, ftchash_rec_flow1, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:11247:3: note: in expansion of macro 'STD_ACCUM_HASH1' 11247 | STD_ACCUM_HASH1(ftstat_rpt_68, rpt68, ftchash_rec_flow1, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_69_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:11366:3: note: in expansion of macro 'STD_ACCUM_HASH1' 11366 | STD_ACCUM_HASH1(ftstat_rpt_69, rpt69, ftchash_rec_flow1, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:11366:3: note: in expansion of macro 'STD_ACCUM_HASH1' 11366 | STD_ACCUM_HASH1(ftstat_rpt_69, rpt69, ftchash_rec_flow1, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_70_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:11480:3: note: in expansion of macro 'STD_ACCUM_HASH1' 11480 | STD_ACCUM_HASH1(ftstat_rpt_70, rpt70, ftchash_rec_prefix_tag, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:11480:3: note: in expansion of macro 'STD_ACCUM_HASH1' 11480 | STD_ACCUM_HASH1(ftstat_rpt_70, rpt70, ftchash_rec_prefix_tag, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_71_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:11577:3: note: in expansion of macro 'STD_ACCUM_HASH1' 11577 | STD_ACCUM_HASH1(ftstat_rpt_71, rpt71, ftchash_rec_prefix_tag, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:11577:3: note: in expansion of macro 'STD_ACCUM_HASH1' 11577 | STD_ACCUM_HASH1(ftstat_rpt_71, rpt71, ftchash_rec_prefix_tag, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_72_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:11673:3: note: in expansion of macro 'STD_ACCUM_HASH1' 11673 | STD_ACCUM_HASH1(ftstat_rpt_72, rpt72, ftchash_rec_prefix_tag, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bpmake[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' s_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:11673:3: note: in expansion of macro 'STD_ACCUM_HASH1' 11673 | STD_ACCUM_HASH1(ftstat_rpt_72, rpt72, ftchash_rec_prefix_tag, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_73_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:11769:3: note: in expansion of macro 'STD_ACCUM_HASH1' 11769 | STD_ACCUM_HASH1(ftstat_rpt_73, rpt73, ftchash_rec_prefix_tag, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:11769:3: note: in expansion of macro 'STD_ACCUM_HASH1' 11769 | STD_ACCUM_HASH1(ftstat_rpt_73, rpt73, ftchash_rec_prefix_tag, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_rpt_74_accum': ftstat.c:688:21: warning: 'pps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 688 | A->ps.avg_pps += pps_tmp;\ | ^~ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:11865:3: note: in expansion of macro 'STD_ACCUM_HASH1' 11865 | STD_ACCUM_HASH1(ftstat_rpt_74, rpt74, ftchash_rec_prefix2tag2, | ^~~~~~~~~~~~~~~ ftstat.c:693:21: warning: 'bps_tmp' may be used uninitialized in this function [-Wmaybe-uninitialized] 693 | A->ps.avg_bps += bps_tmp;\ | ^~ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:11865:3: note: in expansion of macro 'STD_ACCUM_HASH1' 11865 | STD_ACCUM_HASH1(ftstat_rpt_74, rpt74, ftchash_rec_prefix2tag2, | ^~~~~~~~~~~~~~~ ftstat.c: In function 'chash_int_dump.isra': ftstat.c:13981:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 13981 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_c32_dump.isra': ftstat.c:12678:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 12678 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_c322_dump.isra': ftstat.c:12747:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 12747 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_c162_dump.isra': ftstat.c:12826:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 12826 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_ip_dump.isra': ftstat.c:13097:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 13097 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefix_dump.isra': ftstat.c:13151:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 13151 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefix_tag_dump.isra': ftstat.c:13218:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 13218 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefix2tag2_dump.isra': ftstat.c:13301:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 13301 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefixh_dump.isra': ftstat.c:13395:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 13395 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefix2_dump.isra': ftstat.c:13475:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 13475 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefix16_dump.isra': ftstat.c:13555:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 13555 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefix162_dump.isra': ftstat.c:13637:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 13637 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefix216_dump.isra': ftstat.c:13731:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 13731 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_prefix2162_dump.isra': ftstat.c:13829:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 13829 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_c64_dump.isra': ftstat.c:13919:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 13919 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_flow1_dump.isra': ftstat.c:14085:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 14085 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_flow12_dump.isra': ftstat.c:14205:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 14205 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_c163_dump.constprop.isra': ftstat.c:12909:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 12909 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'chash_c164_dump.constprop.isra': ftstat.c:13006:5: warning: 'sort_offset' may be used uninitialized in this function [-Wmaybe-uninitialized] 13006 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c: In function 'ftstat_def_accum': ftstat.c:3148:41: warning: 'cur.dst_tag' may be used uninitialized in this function [-Wmaybe-uninitialized] 3148 | *((uint32_t*)(rec+(*fo).dst_tag)) = cur.dst_tag; | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ ftstat.c:3147:41: warning: 'cur.src_tag' may be used uninitialized in this function [-Wmaybe-uninitialized] 3147 | *((uint32_t*)(rec+(*fo).src_tag)) = cur.src_tag; | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ ftstat.c: In function 'ftstat_def_dump': ftstat.c:3315:9: warning: 'path_run' may be used uninitialized in this function [-Wmaybe-uninitialized] 3315 | fterr_warnx("f_dump(%s): failed.", path_run); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 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 -Wl,-z -Wl,relro -Wl,--as-needed -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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-cat.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-cat.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-cat.c: In function 'main': flow-cat.c:345:13: warning: 'in_fd_plain' may be used uninitialized in this function [-Wmaybe-uninitialized] 345 | if (ftio_init(&ftio_in, in_fd, FT_IO_FLAG_READ | | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 346 | ((in_fd_plain && !disable_mmap) ? FT_IO_FLAG_MMAP : 0)) < 0) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-cat.c:399:27: warning: 'time_tmp2' may be used uninitialized in this function [-Wmaybe-uninitialized] 399 | if (time_high && (time_tmp2 < time_high)) { | ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~ flow-cat.c:383:40: warning: 'time_tmp1' may be used uninitialized in this function [-Wmaybe-uninitialized] 383 | if ((time_tmp1 < time_low) || | ~~~~~~~~~~~~~~~~~~~~~~~^~ 384 | ((time_tmp2-time_delta) > time_high)) { | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-capture.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-capture.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-capture.c: In function 'main': flow-capture.c:1162:25: warning: 'ftch_recexpp' may be used uninitialized in this function [-Wmaybe-uninitialized] 1162 | ++ftch_recexpp->filtered_flows; | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-print.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-print.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-print.c: In function 'main': flow-print.c:215:29: warning: 'format_index' may be used uninitialized in this function [-Wmaybe-uninitialized] 215 | ret = format[format_index].where(&ftio, options); | ~~~~~~~~~~~~~~~~~~~~^~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-send.c In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-send.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-dscan.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' In file included from /usr/include/inttypes.h:25, from flow-dscan.c:32: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-dscan.c: In function 'load_state': flow-dscan.c:634:36: warning: variable 'h' set but not used [-Wunused-but-set-variable] 634 | uint32_t ip, hash, depth, flags, h, time, nports, i, j; | ^ flow-dscan.c: In function 'ager': flow-dscan.c:731:16: warning: variable 'picky_gcc' set but not used [-Wunused-but-set-variable] 731 | int i, work, picky_gcc; | ^~~~~~~~~ flow-dscan.c: In function 'load_state': flow-dscan.c:655:9: warning: ignoring return value of 'fscanf' declared with attribute 'warn_unused_result' [-Wunused-result] 655 | fscanf(FP, "%u %u %u %64s", (unsigned*)&hash, (unsigned*)&depth, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 656 | (unsigned*)&flags, buf); | ~~~~~~~~~~~~~~~~~~~~~~~ flow-dscan.c:677:9: warning: ignoring return value of 'fscanf' declared with attribute 'warn_unused_result' [-Wunused-result] 677 | fscanf(FP, "%u %15s", &time, buf); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-dscan.c:694:9: warning: ignoring return value of 'fscanf' declared with attribute 'warn_unused_result' [-Wunused-result] 694 | fscanf(FP, "%u", &nports); | ^~~~~~~~~~~~~~~~~~~~~~~~~ flow-dscan.c:696:11: warning: ignoring return value of 'fscanf' declared with attribute 'warn_unused_result' [-Wunused-result] 696 | fscanf(FP, "%u", &j); | ^~~~~~~~~~~~~~~~~~~~ flow-dscan.c:698:13: warning: 'ddp' may be used uninitialized in this function [-Wmaybe-uninitialized] 698 | bit1024_store((int)j, &ddp->portmap); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from ./../lib/ftlib.h:63, from flow-dscan.c:37: ./../lib/ftqueue.h:204:20: warning: 'drp' may be used uninitialized in this function [-Wmaybe-uninitialized] 204 | (head)->stqh_last = &(elm)->field.stqe_next; \ | ^ flow-dscan.c:630:21: note: 'drp' was declared here 630 | struct dscan_rec *drp; | ^~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-expire.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-expire.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-receive.c In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-receive.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-gen.c In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-gen.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-filter.c In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-filter.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-filter.c: In function 'main': flow-filter.c:532:13: warning: 'acl_std_nexthop_index2' may be used uninitialized in this function [-Wmaybe-uninitialized] 532 | ret = acl_eval_std(acl_list, acl_std_nexthop_index2, *cur.nexthop); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-filter.c:581:13: warning: 'acl_ext_index2' may be used uninitialized in this function [-Wmaybe-uninitialized] 581 | ret = acl_eval_ext(acl_list, acl_ext_index2, tmp_ext); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-filter.c:554:13: warning: 'acl_std_dst_index2' may be used uninitialized in this function [-Wmaybe-uninitialized] 554 | ret = acl_eval_std(acl_list, acl_std_dst_index2, *cur.dstaddr); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-filter.c:543:13: warning: 'acl_std_src_index2' may be used uninitialized in this function [-Wmaybe-uninitialized] 543 | ret = acl_eval_std(acl_list, acl_std_src_index2, *cur.srcaddr); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-filter.c:470:10: warning: 'exaddr' may be used uninitialized in this function [-Wmaybe-uninitialized] 470 | if (*cur.exaddr != exaddr) { | ^ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c aclyacc.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' aclyacc.c: In function 'yyparse': aclyacc.c:798:16: warning: implicit declaration of function 'yylex' [-Wimplicit-function-declaration] 798 | # define YYLEX yylex () | ^~~~~ aclyacc.c:1443:16: note: in expansion of macro 'YYLEX' 1443 | yychar = YYLEX; | ^~~~~ aclyacc.c:2001:7: warning: implicit declaration of function 'yyerror'; did you mean 'yyerrok'? [-Wimplicit-function-declaration] 2001 | yyerror (YY_("syntax error")); | ^~~~~~~ | yyerrok 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-stat.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-stat.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-stat.c: In function 'format14': flow-stat.c:1643:12: warning: variable 'nflows' set but not used [-Wunused-but-set-variable] 1643 | uint64_t nflows; | ^~~~~~ flow-stat.c: In function 'tbl_out1': flow-stat.c:3637:7: warning: 'plines' may be used uninitialized in this function [-Wmaybe-uninitialized] 3637 | ++plines; | ^~~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c acl2.c In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from acl2.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ acl2.c: In function 'acl_create': acl2.c:125:10: warning: variable 'new' set but not used [-Wunused-but-set-variable] 125 | int x, new; | ^~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c acllex.c acllex.c:1371:16: warning: 'input' defined but not used [-Wunused-function] 1371 | static int input (void) | ^~~~~ acllex.c:1330:17: warning: 'yyunput' defined but not used [-Wunused-function] 1330 | static void yyunput (int c, register char * yy_bp ) | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-header.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-header.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-header.c: In function 'main': flow-header.c:42:10: warning: variable 'debug' set but not used [-Wunused-but-set-variable] 42 | int i, debug; | ^~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-xlate.c In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-xlate.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-xlate.c: In function 'main': flow-xlate.c:226:3: warning: 'cap_start' may be used uninitialized in this function [-Wmaybe-uninitialized] 226 | ftio_set_cap_time(&ftio_out, cap_start, cap_end); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-xlate.c:226:3: warning: 'cap_end' may be used uninitialized in this function [-Wmaybe-uninitialized] 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-split.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-split.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-merge.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-merge.c:31: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-tag.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-tag.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-tag.c: In function 'main': flow-tag.c:200:3: warning: 'cap_start' may be used uninitialized in this function [-Wmaybe-uninitialized] 200 | ftio_set_cap_time(&ftio_out, cap_start, cap_end); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-tag.c:200:3: warning: 'cap_end' may be used uninitialized in this function [-Wmaybe-uninitialized] 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-fanout.c In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-fanout.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-fanout.c: In function 'main': flow-fanout.c:308:5: warning: ignoring return value of 'chdir' declared with attribute 'warn_unused_result' [-Wunused-result] 308 | chdir ("/"); | ^~~~~~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-nfilter.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-nfilter.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-nfilter.c: In function 'main': flow-nfilter.c:192:3: warning: 'cap_start' may be used uninitialized in this function [-Wmaybe-uninitialized] 192 | ftio_set_cap_time(&ftio_out, cap_start, cap_end); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-nfilter.c:192:3: warning: 'cap_end' may be used uninitialized in this function [-Wmaybe-uninitialized] 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-import.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-import.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-import.c: In function 'format4': flow-import.c:1184:7: warning: 'len' may be used uninitialized in this function [-Wmaybe-uninitialized] 1184 | fterr_errx(1, "fread(): failed - expecting to read %d bytes.", len); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-mask.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-mask.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-mask.c: In function 'main': flow-mask.c:178:3: warning: 'cap_start' may be used uninitialized in this function [-Wmaybe-uninitialized] 178 | ftio_set_cap_time(&ftio_out, cap_start, cap_end); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-mask.c:178:3: warning: 'cap_end' may be used uninitialized in this function [-Wmaybe-uninitialized] 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 -fasynchronous-unwind-tables -fstack-clash-protection -c flow-report.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-report.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-report.c: In function 'main': flow-report.c:67:17: warning: variable 'done' set but not used [-Wunused-but-set-variable] 67 | int i, split, done; | ^~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' 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 -fasynchronous-unwind-tables -fstack-clash-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' In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-export.c:30: /usr/include/features.h:187:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 187 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-export.c: In function 'format1': flow-export.c:505:8: warning: unused variable 'thiszone' [-Wunused-variable] 505 | long thiszone; | ^~~~~~~~ flow-export.c: In function 'format5': flow-export.c:899:59: warning: unused variable 'db_tmp' [-Wunused-variable] 899 | char *db_host, *db_name, *db_table, *db_user, *db_pwd, *db_tmp, *tmp; | ^~~~~~ 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 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 -fasynchronous-unwind-tables -fstack-clash-protection -pie -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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' /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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' 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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' /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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' /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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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 -fasynchronous-unwind-tables -fstack-clash-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' 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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-tools.html.in > flow-tools.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-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-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-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-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-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-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'. + RPM_EC=0 ++ jobs -p + exit 0 Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.PqZIgi + umask 022 + cd /builddir/build/BUILD + '[' /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64 '!=' / ']' + rm -rf /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64 ++ dirname /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64 + mkdir -p /builddir/build/BUILDROOT + mkdir /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64 + cd flow-tools-0.68.5.1 + /usr/bin/make install DESTDIR=/builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64 'INSTALL=/usr/bin/install -p' 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-29.fc33.riscv64/usr/lib64" /bin/sh ../libtool --mode=install /usr/bin/install -p libft.la '/builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/lib64' libtool: install: /usr/bin/install -p .libs/libft.so.0.0.0 /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/lib64/libft.so.0.0.0 libtool: install: (cd /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/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-29.fc33.riscv64/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-29.fc33.riscv64/usr/lib64/libft.la libtool: install: warning: remember to run `libtool --finish /usr/lib64' test -z "/usr/include" || /usr/bin/mkdir -p "/builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/include" /usr/bin/install -p -m 644 ftlib.h ftqueue.h '/builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/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-29.fc33.riscv64/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-29.fc33.riscv64/usr/bin' libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-capture /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-capture libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-cat /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-cat libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-stat /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-stat libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-print /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-print libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-dscan /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-dscan libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-send /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-send libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-receive /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-receive libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-gen /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-gen libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-expire /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-expire libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-filter /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-filter libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-export /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-export libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-header /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-header libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-split /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-split libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-xlate /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-xlate libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-merge /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-merge libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-import /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-import libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-fanout /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-fanout libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-tag /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-tag libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-nfilter /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-nfilter libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-report /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-report libtool: install: warning: `../lib/libft.la' has not been installed in `/usr/lib64' libtool: install: /usr/bin/install -p .libs/flow-mask /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/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-29.fc33.riscv64/usr/bin" /usr/bin/install -p flow-log2rrd flow-rptfmt flow-rpt2rrd '/builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/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-29.fc33.riscv64/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-29.fc33.riscv64/etc/flow-tools/cfg' test -z "/etc/flow-tools/sym" || /usr/bin/mkdir -p "/builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/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-29.fc33.riscv64/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-29.fc33.riscv64/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-29.fc33.riscv64/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'. test -z "/usr/share/flow-tools" || /usr/bin/mkdir -p "/builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/share/flow-tools" /usr/bin/install -p asn2c gasn gprot gserv '/builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/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' + find /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64 -type f -name '*.la' -exec rm -f '{}' ';' + mkdir -p /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/var/flow-tools + install -d /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/lib/systemd/system + install -m 0644 /builddir/build/SOURCES/flow-capture.service /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/lib/systemd/system/flow-capture.service + install -d /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/etc/sysconfig + install -m 0644 /builddir/build/SOURCES/flow-capture.sysconfig /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/etc/sysconfig/flow-capture + /usr/lib/rpm/find-debuginfo.sh -j4 --strict-build-id -m -i --build-id-seed 0.68.5.1-29.fc33 --unique-debug-suffix -0.68.5.1-29.fc33.riscv64 --unique-debug-src-base flow-tools-0.68.5.1-29.fc33.riscv64 --run-dwz --dwz-low-mem-die-limit 10000000 --dwz-max-die-limit 50000000 -S debugsourcefiles.list /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-29.fc33.riscv64/usr/bin/flow-capture explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-cat extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-capture explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-dscan extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-cat explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-expire extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-dscan extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-expire explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-export extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-export explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-filter extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-filter explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-fanout explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-gen extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-fanout extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-gen explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-header extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-header explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-import extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-import explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-mask extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-mask explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-merge extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-merge explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-nfilter extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-nfilter explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-print extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-print explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-receive extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-receive explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-report extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-report explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-send explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-split extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-send extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-split explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-stat explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-tag extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-tag extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-stat explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-xlate extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/bin/flow-xlate explicitly decompress any DWARF compressed ELF sections in /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/lib64/libft.so.0.0.0 extracting debug info from /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/lib64/libft.so.0.0.0 original debug info size: 3192kB, size after compression: 2908kB /usr/lib/rpm/sepdebugcrcfix: Updated 22 CRC32s, 0 CRC32s did match. 3745 blocks + /usr/lib/rpm/check-buildroot + /usr/lib/rpm/redhat/brp-ldconfig + /usr/lib/rpm/brp-compress + /usr/lib/rpm/redhat/brp-strip-lto /usr/bin/strip + /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 Processing files: flow-tools-0.68.5.1-29.fc33.riscv64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.Mgdedk + umask 022 + cd /builddir/build/BUILD + cd flow-tools-0.68.5.1 + DOCDIR=/builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/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-29.fc33.riscv64/usr/share/doc/flow-tools + cp -pr README /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/share/doc/flow-tools + cp -pr README.fork /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/share/doc/flow-tools + cp -pr COPYING /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/share/doc/flow-tools + cp -pr ChangeLog /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/share/doc/flow-tools + RPM_EC=0 ++ jobs -p + exit 0 Provides: config(flow-tools) = 0.68.5.1-29.fc33 flow-tools = 0.68.5.1-29.fc33 flow-tools(riscv-64) = 0.68.5.1-29.fc33 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 ld-linux-riscv64-lp64d.so.1()(64bit) ld-linux-riscv64-lp64d.so.1(GLIBC_2.27)(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.27)(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-29.fc33.riscv64 Provides: flow-tools-devel = 0.68.5.1-29.fc33 flow-tools-devel(riscv-64) = 0.68.5.1-29.fc33 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-29.fc33.riscv64 Provides: flow-tools-rrdtool = 0.68.5.1-29.fc33 flow-tools-rrdtool(riscv-64) = 0.68.5.1-29.fc33 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-29.fc33.riscv64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.4h6yzi + umask 022 + cd /builddir/build/BUILD + cd flow-tools-0.68.5.1 + DOCDIR=/builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/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-29.fc33.riscv64/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-29.fc33.riscv64/usr/share/doc/flow-tools-docs + cp -pr ChangeLog.old /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/share/doc/flow-tools-docs + cp -pr TODO /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/share/doc/flow-tools-docs + cp -pr INSTALL /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/share/doc/flow-tools-docs + cp -pr SECURITY /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64/usr/share/doc/flow-tools-docs + RPM_EC=0 ++ jobs -p + exit 0 Provides: flow-tools-docs = 0.68.5.1-29.fc33 flow-tools-docs(riscv-64) = 0.68.5.1-29.fc33 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-29.fc33.riscv64 Provides: flow-tools-debugsource = 0.68.5.1-29.fc33 flow-tools-debugsource(riscv-64) = 0.68.5.1-29.fc33 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-29.fc33.riscv64 Provides: debuginfo(build-id) = 0ab6e3739711a1182115e11e29a02bc8b237d221 debuginfo(build-id) = 2d00157aa4b81982bf3553284c14188a625cb25d debuginfo(build-id) = 2d77538a429832baf56d8a63ec7a1cbd69ca589f debuginfo(build-id) = 359ed6b46d0319f80e6dd59120b2d3fe6f5ab197 debuginfo(build-id) = 6330bff56f77ad2d9b9a6cdebdf2bce4ba57c2c0 debuginfo(build-id) = 6964a77f81759e3c1acad231e211a1b0daa5e7d6 debuginfo(build-id) = 721028e2b26812a5a18ae6ff82d7111958e82e0c debuginfo(build-id) = 7d67b922ef52986e65a19706f139403886b76a59 debuginfo(build-id) = 7db54c2d70834fc0d51aa3ec1511d61565fb2e29 debuginfo(build-id) = 8e275918411638fd11e8fa5f84b2477503e480bf debuginfo(build-id) = 9c94995b6c82258b13441c461f3dd753b34fe248 debuginfo(build-id) = a6808fe57b0563723ffd870e38828e9f684639b3 debuginfo(build-id) = a97500b941563e438ab7ba8eec631f76d865b976 debuginfo(build-id) = ac609098a734a5be762e2cada1e1be224df51af4 debuginfo(build-id) = bc32617dbe1735995c45a39c6ce2f8bdbf18f6c5 debuginfo(build-id) = c93bce9d510705066707ce718e2aa828d4059310 debuginfo(build-id) = caa448fe5d73dca8726b7c1aa3e9ee0e960444ff debuginfo(build-id) = d02c553d9d061f3a12a84b62f4018aab31fd9c95 debuginfo(build-id) = d9d8265704934bb8e76b9cd21c7611b7e3d31fd3 debuginfo(build-id) = dfb1469329e211aac47e5e72103b2997261eb25d debuginfo(build-id) = f5ca8d2bd7e58d371758ff6213bb9c38b1ce6a7f debuginfo(build-id) = f93ca0eed121f57bccd686db82a08e0761bdb2f4 flow-tools-debuginfo = 0.68.5.1-29.fc33 flow-tools-debuginfo(riscv-64) = 0.68.5.1-29.fc33 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Recommends: flow-tools-debugsource(riscv-64) = 0.68.5.1-29.fc33 Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/flow-tools-0.68.5.1-29.fc33.riscv64 Wrote: /builddir/build/RPMS/flow-tools-rrdtool-0.68.5.1-29.fc33.riscv64.rpm Wrote: /builddir/build/RPMS/flow-tools-devel-0.68.5.1-29.fc33.riscv64.rpm Wrote: /builddir/build/RPMS/flow-tools-docs-0.68.5.1-29.fc33.riscv64.rpm Wrote: /builddir/build/RPMS/flow-tools-0.68.5.1-29.fc33.riscv64.rpm Wrote: /builddir/build/RPMS/flow-tools-debugsource-0.68.5.1-29.fc33.riscv64.rpm Wrote: /builddir/build/RPMS/flow-tools-debuginfo-0.68.5.1-29.fc33.riscv64.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.6YbYWj + 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-29.fc33.riscv64 + RPM_EC=0 ++ jobs -p + exit 0 Child return code was: 0