Mock Version: 2.15 Mock Version: 2.15 Mock Version: 2.15 ENTER ['do_with_status'](['bash', '--login', '-c', '/usr/bin/rpmbuild -bs --target riscv64 --nodeps /builddir/build/SPECS/flow-tools.spec'], chrootPath='/var/lib/mock/f40-build-750206-114865/root'env={'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'}shell=Falselogger=timeout=604800uid=991gid=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': 'C.UTF-8'} and shell False Building target platforms: riscv64 Building for target riscv64 setting SOURCE_DATE_EPOCH=1689724800 Wrote: /builddir/build/SRPMS/flow-tools-0.68.5.1-38.fc40.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/f40-build-750206-114865/root'env={'TERM': 'vt100', 'SHELL': '/bin/bash', 'HOME': '/builddir', 'HOSTNAME': 'mock', 'PATH': '/usr/bin:/bin:/usr/sbin:/sbin', 'PROMPT_COMMAND': 'printf "\\033]0;\\007"', 'PS1': ' \\s-\\v\\$ ', 'LANG': 'C.UTF-8'}shell=Falselogger=timeout=604800uid=991gid=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': 'C.UTF-8'} and shell False Building target platforms: riscv64 Building for target riscv64 setting SOURCE_DATE_EPOCH=1689724800 Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.3THiSh + umask 022 + cd /builddir/build/BUILD + cd /builddir/build/BUILD + rm -rf flow-tools-0.68.5.1 + /usr/lib/rpm/rpmuncompress -x /builddir/build/SOURCES/flow-tools-0.68.5.1.tar.bz2 + STATUS=0 + '[' 0 -ne 0 ']' + cd flow-tools-0.68.5.1 + rm -rf /builddir/build/BUILD/flow-tools-0.68.5.1-SPECPARTS + /usr/bin/mkdir -p /builddir/build/BUILD/flow-tools-0.68.5.1-SPECPARTS + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + /usr/lib/rpm/rpmuncompress /builddir/build/SOURCES/flow-werror-fix.patch + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f + /usr/lib/rpm/rpmuncompress /builddir/build/SOURCES/flow-tools-extern.patch + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f + /usr/lib/rpm/rpmuncompress /builddir/build/SOURCES/flow-tools-c99.patch + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f + 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 /usr/bin/2to3:3: DeprecationWarning: lib2to3 package is deprecated and may not be able to parse Python 3.10+ from lib2to3.main import main 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.9RTGUk + umask 022 + cd /builddir/build/BUILD + CFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer ' + export CFLAGS + CXXFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer ' + export CXXFLAGS + FFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -I/usr/lib64/gfortran/modules ' + export FFLAGS + FCFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -I/usr/lib64/gfortran/modules ' + export FCFLAGS + VALAFLAGS=-g + export VALAFLAGS + RUSTFLAGS='-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none -Cforce-frame-pointers=yes -Clink-arg=-Wl,-z,relro -Clink-arg=-Wl,-z,now -Clink-arg=-specs=/usr/lib/rpm/redhat/redhat-package-notes --cap-lints=warn' + export RUSTFLAGS + LDFLAGS='-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes ' + export LDFLAGS + LT_SYS_LIBRARY_PATH=/usr/lib64: + export LT_SYS_LIBRARY_PATH + CC=gcc + export CC + CXX=g++ + export CXX + cd flow-tools-0.68.5.1 + CFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer ' + export CFLAGS + CXXFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer ' + export CXXFLAGS + FFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -I/usr/lib64/gfortran/modules ' + export FFLAGS + FCFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -I/usr/lib64/gfortran/modules ' + export FCFLAGS + VALAFLAGS=-g + export VALAFLAGS + RUSTFLAGS='-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none -Cforce-frame-pointers=yes -Clink-arg=-Wl,-z,relro -Clink-arg=-Wl,-z,now -Clink-arg=-specs=/usr/lib/rpm/redhat/redhat-package-notes --cap-lints=warn' + export RUSTFLAGS + LDFLAGS='-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes ' + export LDFLAGS + LT_SYS_LIBRARY_PATH=/usr/lib64: + export LT_SYS_LIBRARY_PATH + CC=gcc + export CC + CXX=g++ + export CXX + '[' '-flto=auto -ffat-lto-objectsx' '!=' x ']' ++ find . -type f -name configure -print + for file in $(find . -type f -name configure -print) + /usr/bin/sed -r --in-place=.backup 's/^char \(\*f\) \(\) = /__attribute__ ((used)) char (*f) () = /g' ./configure + diff -u ./configure.backup ./configure + mv ./configure.backup ./configure + /usr/bin/sed -r --in-place=.backup 's/^char \(\*f\) \(\);/__attribute__ ((used)) char (*f) ();/g' ./configure + diff -u ./configure.backup ./configure + mv ./configure.backup ./configure + /usr/bin/sed -r --in-place=.backup 's/^char \$2 \(\);/__attribute__ ((used)) char \$2 ();/g' ./configure + diff -u ./configure.backup ./configure --- ./configure.backup 2023-11-28 08:47:25.553515874 -0500 +++ ./configure 2023-11-28 08:47:25.753516157 -0500 @@ -1729,7 +1729,7 @@ #ifdef __cplusplus extern "C" #endif -char $2 (); +__attribute__ ((used)) char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ + /usr/bin/sed --in-place=.backup '1{$!N;$!N};$!N;s/int x = 1;\nint y = 0;\nint z;\nint nan;/volatile int x = 1; volatile int y = 0; volatile int z, nan;/;P;D' ./configure + diff -u ./configure.backup ./configure + mv ./configure.backup ./configure + /usr/bin/sed --in-place=.backup 's#^lt_cv_sys_global_symbol_to_cdecl=.*#lt_cv_sys_global_symbol_to_cdecl="sed -n -e '\''s/^T .* \\(.*\\)$/extern int \\1();/p'\'' -e '\''s/^$symcode* .* \\(.*\\)$/extern char \\1;/p'\''"#' ./configure + diff -u ./configure.backup ./configure --- ./configure.backup 2023-11-28 08:47:25.753516157 -0500 +++ ./configure 2023-11-28 08:47:25.883516340 -0500 @@ -14137,7 +14137,7 @@ compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' -lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' + '[' 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 ++ grep -q runstatedir=DIR ./configure + ./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... 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... (cached) 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wno-complain-wrong-lang -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer' 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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; | ^~~~~ In file included from ftio.c:30: ftio.c: In function 'ftiheader_read': ftlib.h:58:1: warning: overflow in conversion from 'int' to 'uint16_t' {aka 'short unsigned int'} changes value from '(int)ifIndex << 24 | (int)ifIndex << 8 & 16711680' to '0' [-Woverflow] 58 | ((((y)&0xff)<<24) | (((y)&0xff00)<<8) | (((y)&0xff0000)>>8) | (((y)>>24)&0xff)); | ^ ftio.c:2675:21: note: in expansion of macro 'SWAPINT32' 2675 | if (flip) SWAPINT32(ifIndex); | ^~~~~~~~~ ftlib.h:58:1: warning: overflow in conversion from 'int' to 'uint16_t' {aka 'short unsigned int'} changes value from '(int)entries << 24 | (int)entries << 8 & 16711680' to '0' [-Woverflow] 58 | ((((y)&0xff)<<24) | (((y)&0xff00)<<8) | (((y)&0xff0000)>>8) | (((y)>>24)&0xff)); | ^ ftio.c:2701:21: note: in expansion of macro 'SWAPINT32' 2701 | if (flip) SWAPINT32(entries); | ^~~~~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c ftdecode.c -fPIC -DPIC -o .libs/libft_la-ftdecode.o In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftdecode.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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:980, from ftlib.h:42: In function 'sprintf', inlined from 'ftfile_mkpath' at ftfile.c:567:5: /usr/include/bits/stdio2.h:30:10: note: '__sprintf_chk' output between 9 and 36 bytes into a destination of size 32 30 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 31 | __glibc_objsize (__s), __fmt, | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 32 | __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~ ftfile.c: In function 'ftfile_mkpath': 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 function 'sprintf', inlined from 'ftfile_mkpath' at ftfile.c:585:5: /usr/include/bits/stdio2.h:30:10: note: '__sprintf_chk' output between 18 and 72 bytes into a destination of size 32 30 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 31 | __glibc_objsize (__s), __fmt, | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 32 | __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~ ftfile.c: In function 'ftfile_mkpath': 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 function 'sprintf', inlined from 'ftfile_mkpath' at ftfile.c:562:5: /usr/include/bits/stdio2.h:30:10: note: '__sprintf_chk' output between 15 and 60 bytes into a destination of size 32 30 | return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 31 | __glibc_objsize (__s), __fmt, | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 32 | __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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c fttlv.c -fPIC -DPIC -o .libs/libft_la-fttlv.o In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from fttlv.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c ftmap.c -fPIC -DPIC -o .libs/libft_la-ftmap.o In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftmap.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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); | ^~~~ ftmap.c: In function 'ftmap_ifalias_new': ftmap.c:173:3: warning: '__strcpy_chk' writing one too many bytes into a region of a size that depends on 'strlen' [-Wstringop-overflow=] 173 | strcpy(ftmia->name, name); | ^ ftmap.c:165:23: note: destination object of size [0, 2147483647] allocated by 'malloc' 165 | if (!(ftmia->name = malloc(n))) | ^~~~~~~~~ ftmap.c: In function 'ftmap_ifname_new': ftmap.c:267:3: warning: '__strcpy_chk' writing one too many bytes into a region of a size that depends on 'strlen' [-Wstringop-overflow=] 267 | strcpy(ftmin->name, name); | ^ ftmap.c:262:23: note: destination object of size [0, 2147483647] allocated by 'malloc' 262 | if (!(ftmin->name = malloc(n))) | ^~~~~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c fterr.c -fPIC -DPIC -o .libs/libft_la-fterr.o In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from fterr.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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:980, from ftlib.h:42: In function 'snprintf', inlined from 'fterr_info' at fterr.c:109:3: /usr/include/bits/stdio2.h:54:10: note: '__snprintf_chk' output 3 or more bytes (assuming 1027) into a destination of size 1024 54 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 55 | __glibc_objsize (__s), __fmt, | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 56 | __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 function 'snprintf', inlined from 'fterr_err' at fterr.c:131:5: /usr/include/bits/stdio2.h:54:10: note: '__snprintf_chk' output 5 or more bytes (assuming 1029) into a destination of size 1024 54 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 55 | __glibc_objsize (__s), __fmt, | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 56 | __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~ fterr.c: In function 'fterr_err': 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 function 'snprintf', inlined from 'fterr_err' at fterr.c:136:5: /usr/include/bits/stdio2.h:54:10: note: '__snprintf_chk' output 3 or more bytes (assuming 1027) into a destination of size 1024 54 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 55 | __glibc_objsize (__s), __fmt, | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 56 | __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 function 'snprintf', inlined from 'fterr_errx' at fterr.c:157:5: /usr/include/bits/stdio2.h:54:10: note: '__snprintf_chk' output 3 or more bytes (assuming 1027) into a destination of size 1024 54 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 55 | __glibc_objsize (__s), __fmt, | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 56 | __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 function 'snprintf', inlined from 'fterr_warnx' at fterr.c:181:5: /usr/include/bits/stdio2.h:54:10: note: '__snprintf_chk' output 3 or more bytes (assuming 1027) into a destination of size 1024 54 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 55 | __glibc_objsize (__s), __fmt, | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 56 | __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 function 'snprintf', inlined from 'fterr_warn' at fterr.c:202:5: /usr/include/bits/stdio2.h:54:10: note: '__snprintf_chk' output 5 or more bytes (assuming 1029) into a destination of size 1024 54 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 55 | __glibc_objsize (__s), __fmt, | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 56 | __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~ fterr.c: In function 'fterr_warn': 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 function 'snprintf', inlined from 'fterr_warn' at fterr.c:207:5: /usr/include/bits/stdio2.h:54:10: note: '__snprintf_chk' output 3 or more bytes (assuming 1027) into a destination of size 1024 54 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 55 | __glibc_objsize (__s), __fmt, | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 56 | __va_arg_pack ()); | ~~~~~~~~~~~~~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c ftsym.c -fPIC -DPIC -o .libs/libft_la-ftsym.o In file included from /usr/include/inttypes.h:25, from ftsym.c:32: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c ftswap.c -fPIC -DPIC -o .libs/libft_la-ftswap.o In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftswap.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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; | ^~~~~~~~~~~ ftswap.c: In function 'ftpdu_v8_10_swap': ftlib.h:58:1: warning: overflow in conversion from 'int' to 'uint16_t' {aka 'short unsigned int'} changes value from '(int)pdu->records[(int)i].srcport << 24 | (int)pdu->records[(int)i].srcport << 8 & 16711680' to '0' [-Woverflow] 58 | ((((y)&0xff)<<24) | (((y)&0xff00)<<8) | (((y)&0xff0000)>>8) | (((y)>>24)&0xff)); | ^ ftswap.c:770:5: note: in expansion of macro 'SWAPINT32' 770 | SWAPINT32(pdu->records[i].srcport); | ^~~~~~~~~ ftlib.h:58:1: warning: overflow in conversion from 'int' to 'uint16_t' {aka 'short unsigned int'} changes value from '(int)pdu->records[(int)i].dstport << 24 | (int)pdu->records[(int)i].dstport << 8 & 16711680' to '0' [-Woverflow] 58 | ((((y)&0xff)<<24) | (((y)&0xff00)<<8) | (((y)&0xff0000)>>8) | (((y)>>24)&0xff)); | ^ ftswap.c:771:5: note: in expansion of macro 'SWAPINT32' 771 | SWAPINT32(pdu->records[i].dstport); | ^~~~~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c radix.c -fPIC -DPIC -o .libs/libft_la-radix.o In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from radix.c:42: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c fttag.c -fPIC -DPIC -o .libs/libft_la-fttag.o In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from fttag.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c getdate.c -fPIC -DPIC -o .libs/libft_la-getdate.o In file included from /usr/include/bits/libc-header-start.h:33, from /usr/include/stdio.h:28, from getdate.y:33: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c ftxfield.c -fPIC -DPIC -o .libs/libft_la-ftxfield.o In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftxfield.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c ftmask.c -fPIC -DPIC -o .libs/libft_la-ftmask.o In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftmask.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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]: 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c ftfil.c -fPIC -DPIC -o .libs/libft_la-ftfil.o In file included from /usr/include/inttypes.h:25, from ftinclude.h:7, from ftfil.c:29: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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: 'permit' may be used uninitialized [-Wmaybe-uninitialized] 5047 | list[i] = flag; | ~~~~~~~~^~~~~~ ftfil.c:4989:7: note: 'permit' was declared here 4989 | int permit,deny; | ^~~~~~ ftfil.c: In function 'parse_definition_match': ftfil.c:3007:7: warning: 'ftm' may be used uninitialized [-Wmaybe-uninitialized] 3007 | free(ftm); | ^~~~~~~~~ ftfil.c:2939:23: note: 'ftm' was declared here 2939 | struct ftfil_match *ftm; | ^~~ In function 'resolve_primitives', inlined from 'ftfil_load' at ftfil.c:2583:7: ftfil.c:3491:20: warning: 'eval' may be used uninitialized [-Wmaybe-uninitialized] 3491 | ftmi->eval = eval; | ~~~~~~~~~~~^~~~~~ ftfil.c: In function 'ftfil_load': ftfil.c:3062:9: note: 'eval' was declared here 3062 | void *eval; | ^~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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; | ^ In function 'cryptopan_anon', inlined from 'eval_ip_dst_addr_anon' at ftxlate.c:1813:7: ftxlate.c:2162:27: warning: 'rin_output' is used uninitialized [-Wuninitialized] 2162 | result |= (rin_output[0] >> 7) << (31-pos); | ~~~~~~~~~~^~~ ftxlate.c: In function 'eval_ip_dst_addr_anon': ftxlate.c:2107:11: note: 'rin_output' declared here 2107 | uint8_t rin_output[16]; | ^~~~~~~~~~ In function 'cryptopan_anon', inlined from 'eval_ip_src_addr_anon' at ftxlate.c:1763:7: ftxlate.c:2162:27: warning: 'rin_output' is used uninitialized [-Wuninitialized] 2162 | result |= (rin_output[0] >> 7) << (31-pos); | ~~~~~~~~~~^~~ ftxlate.c: In function 'eval_ip_src_addr_anon': ftxlate.c:2107:11: note: 'rin_output' declared here 2107 | uint8_t rin_output[16]; | ^~~~~~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c ftstat.c -fPIC -DPIC -o .libs/libft_la-ftstat.o make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' In file included from /usr/include/sys/types.h:25, from ftlib.h:32, from ftstat.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_4_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_5_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_8_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_9_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_10_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_14_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_18_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_21_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_24_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_39_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_40_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_41_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_42_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_43_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_44_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_45_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_48_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_49_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_50_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_76_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_77_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_78_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_15_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_16_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_17_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_25_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_26_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_27_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_28_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_29_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_30_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_31_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_32_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_33_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_34_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_35_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_36_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_37_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_38_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_51_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_52_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_53_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_54_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_55_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_56_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_57_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_58_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_59_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_60_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_61_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_62_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_63_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_64_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_66_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_67_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_68_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_69_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_70_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_71_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_72_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_73_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'ftstat_rpt_74_accum': ftstat.c:689:10: warning: 'bps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 689 | if (bps_tmp > A->ps.max_bps)\ | ^ ftstat.c:667:10: note: 'bps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c:684:10: warning: 'pps_tmp' may be used uninitialized [-Wmaybe-uninitialized] 684 | if (pps_tmp > A->ps.max_pps)\ | ^ ftstat.c:667:19: note: 'pps_tmp' was declared here 667 | double bps_tmp, pps_tmp;\ | ^~~~~~~ ftstat.c: In function 'chash_c163_dump.constprop.0.isra.0': ftstat.c:12909:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 12909 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_c164_dump.constprop.0.isra.0': ftstat.c:13006:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 13006 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_flow12_dump.isra.0': ftstat.c:14205:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 14205 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_flow1_dump.isra.0': ftstat.c:14085:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 14085 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_int_dump.isra.0': ftstat.c:13981:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 13981 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_c64_dump.isra.0': ftstat.c:13919:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 13919 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_prefix2162_dump.isra.0': ftstat.c:13829:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 13829 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_prefix216_dump.isra.0': ftstat.c:13731:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 13731 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_prefix162_dump.isra.0': ftstat.c:13637:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 13637 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_prefix16_dump.isra.0': ftstat.c:13555:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 13555 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_prefix2_dump.isra.0': ftstat.c:13475:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 13475 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_prefixh_dump.isra.0': ftstat.c:13395:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 13395 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_prefix2tag2_dump.isra.0': ftstat.c:13301:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 13301 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_prefix_tag_dump.isra.0': ftstat.c:13218:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 13218 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_prefix_dump.isra.0': ftstat.c:13151:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 13151 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_ip_dump.isra.0': ftstat.c:13097:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 13097 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_c162_dump.isra.0': ftstat.c:12826:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 12826 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_c322_dump.isra.0': ftstat.c:12747:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 12747 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'chash_c32_dump.isra.0': ftstat.c:12678:5: warning: 'sort_offset' may be used uninitialized [-Wmaybe-uninitialized] 12678 | ftchash_sort(ftch, sort_offset, sort_flags); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:154:29: note: 'sort_offset' was declared here 154 | int len, fmt, sort_flags, sort_offset, comma;\ | ^~~~~~~~~~~ ftstat.c: In function 'ftstat_def_accum': ftstat.c:3147:41: warning: 'cur.src_tag' may be used uninitialized [-Wmaybe-uninitialized] 3147 | *((uint32_t*)(rec+(*fo).src_tag)) = cur.src_tag; | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ ftstat.c:3065:23: note: 'cur.src_tag' was declared here 3065 | struct fts3rec_all2 cur; | ^~~ ftstat.c:3148:41: warning: 'cur.dst_tag' may be used uninitialized [-Wmaybe-uninitialized] 3148 | *((uint32_t*)(rec+(*fo).dst_tag)) = cur.dst_tag; | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ ftstat.c:3065:23: note: 'cur.dst_tag' was declared here 3065 | struct fts3rec_all2 cur; | ^~~ ftstat.c: In function 'ftstat_def_dump': ftstat.c:3315:9: warning: 'path_run' may be used uninitialized [-Wmaybe-uninitialized] 3315 | fterr_warnx("f_dump(%s): failed.", path_run); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ftstat.c:3218:53: note: 'path_run' was declared here 3218 | char fmt_tmp[64], fmt_buf[1024], path_buf[1024], *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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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,--build-id=sha1 -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" ) ftmap.c: In function 'ftmap_ifalias_new': ftmap.c:173:3: warning: '__builtin___strcpy_chk' writing one too many bytes into a region of a size that depends on 'strlen' [-Wstringop-overflow=] 173 | strcpy(ftmia->name, name); | ^ ftmap.c:165:23: note: destination object of size [0, 2147483647] allocated by 'malloc' 165 | if (!(ftmia->name = malloc(n))) | ^ ftmap.c: In function 'ftmap_ifname_new': ftmap.c:267:3: warning: '__builtin___strcpy_chk' writing one too many bytes into a region of a size that depends on 'strlen' [-Wstringop-overflow=] 267 | strcpy(ftmin->name, name); | ^ ftmap.c:262:23: note: destination object of size [0, 2147483647] allocated by 'malloc' 262 | if (!(ftmin->name = malloc(n))) | ^ make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/lib' Making all in src make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../ylwrap aclyacc.y y.tab.c aclyacc.c y.tab.h aclyacc.h y.output aclyacc.output -- bison -y -d updating aclyacc.h make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 [-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:67:53: note: ‘in_fd_plain’ was declared here 67 | int i, out_fd, out_fd_plain, in_fd, disable_mmap, in_fd_plain, sort; | ^~~~~~~~~~~ flow-cat.c:393:26: warning: ‘time_tmp1’ may be used uninitialized [-Wmaybe-uninitialized] 393 | if (time_low && (time_tmp1 > time_low)) { | ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ flow-cat.c:74:34: note: ‘time_tmp1’ was declared here 74 | uint32_t time_start, time_end, time_tmp1, time_tmp2, time_delta; | ^~~~~~~~~ flow-cat.c:399:27: warning: ‘time_tmp2’ may be used uninitialized [-Wmaybe-uninitialized] 399 | if (time_high && (time_tmp2 < time_high)) { | ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~ flow-cat.c:74:45: note: ‘time_tmp2’ was declared here 74 | uint32_t time_start, time_end, time_tmp1, time_tmp2, time_delta; | ^~~~~~~~~ make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-capture.c: In function ‘main’: flow-capture.c:1143:23: warning: ‘ftch_recexpp’ may be used uninitialized [-Wmaybe-uninitialized] 1143 | if (ftch_recexpp->xlate) { | ~~~~~~~~~~~~^~~~~~~ flow-capture.c:146:40: note: ‘ftch_recexpp’ was declared here 146 | struct ftchash_rec_exp ftch_recexp, *ftch_recexpp; | ^~~~~~~~~~~~ make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c flow-dscan.c In file included from /usr/include/inttypes.h:25, from flow-dscan.c:32: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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); | ^~~~~~~~~~~~~~~~~~~~ In file included from ./../lib/ftlib.h:63, from flow-dscan.c:37: ./../lib/ftqueue.h:204:27: warning: ‘drp’ may be used uninitialized [-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; | ^~~ flow-dscan.c:698:13: warning: ‘ddp’ may be used uninitialized [-Wmaybe-uninitialized] 698 | bit1024_store((int)j, &ddp->portmap); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-dscan.c:631:21: note: ‘ddp’ was declared here 631 | struct dscan_dst *ddp; | ^~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c flow-print.c In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-print.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-print.c: In function ‘main’: flow-print.c:164:5: warning: ‘format_index’ may be used uninitialized [-Wmaybe-uninitialized] 164 | fterr_errx(1, "No such format, %d\n", format_index); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-print.c:98:10: note: ‘format_index’ was declared here 98 | int i, format_index, set_format, ret; | ^~~~~~~~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c flow-expire.c In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-expire.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-receive.c: In function ‘main’: flow-receive.c:255:18: warning: ‘ftpi.loc_ip’ may be used uninitialized [-Wmaybe-uninitialized] 255 | ftnet.rem_ip = ftpi.loc_ip; | ~~~~~~~~~~~~~^~~~~~~~~~~~~ flow-receive.c:80:18: note: ‘ftpi.loc_ip’ was declared here 80 | struct ftpeeri ftpi; | ^~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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' /bin/sh ../ylwrap acllex.l lex.yy.c acllex.c -- flex 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c aclyacc.c make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c acl2.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 acl2.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c flow-filter.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-filter.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ flow-filter.c: In function ‘main’: flow-filter.c:469:10: warning: ‘exaddr’ may be used uninitialized [-Wmaybe-uninitialized] 469 | if (*cur.exaddr != exaddr) { | ^ flow-filter.c:75:34: note: ‘exaddr’ was declared here 75 | uint32_t time_start, time_end, exaddr; | ^~~~~~ flow-filter.c:580:13: warning: ‘acl_ext_index2’ may be used uninitialized [-Wmaybe-uninitialized] 580 | ret = acl_eval_ext(acl_list, acl_ext_index2, tmp_ext); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-filter.c:83:22: note: ‘acl_ext_index2’ was declared here 83 | int acl_ext_index, acl_ext_index2; | ^~~~~~~~~~~~~~ make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c flow-header.c In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-header.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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]: 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c flow-split.c In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-split.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 [-Wmaybe-uninitialized] 226 | ftio_set_cap_time(&ftio_out, cap_start, cap_end); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-xlate.c:63:25: note: ‘cap_start’ was declared here 63 | uint32_t total_flows, cap_start, cap_end; | ^~~~~~~~~ flow-xlate.c:226:3: warning: ‘cap_end’ may be used uninitialized [-Wmaybe-uninitialized] 226 | ftio_set_cap_time(&ftio_out, cap_start, cap_end); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-xlate.c:63:36: note: ‘cap_end’ was declared here 63 | uint32_t total_flows, cap_start, cap_end; | ^~~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c flow-stat.c In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-stat.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 [-Wmaybe-uninitialized] 3637 | ++plines; | ^~~~~~~~ flow-stat.c:3577:16: note: ‘plines’ was declared here 3577 | unsigned int plines; | ^~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c flow-merge.c In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-merge.c:31: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 [-Wmaybe-uninitialized] 200 | ftio_set_cap_time(&ftio_out, cap_start, cap_end); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-tag.c:62:25: note: ‘cap_start’ was declared here 62 | uint32_t total_flows, cap_start, cap_end; | ^~~~~~~~~ flow-tag.c:200:3: warning: ‘cap_end’ may be used uninitialized [-Wmaybe-uninitialized] 200 | ftio_set_cap_time(&ftio_out, cap_start, cap_end); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-tag.c:62:36: note: ‘cap_end’ was declared here 62 | uint32_t total_flows, cap_start, cap_end; | ^~~~~~~ make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' gcc -I./../lib -I. -I../lib -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c flow-nfilter.c In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-nfilter.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 [-Wmaybe-uninitialized] 192 | ftio_set_cap_time(&ftio_out, cap_start, cap_end); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-nfilter.c:62:25: note: ‘cap_start’ was declared here 62 | uint32_t total_flows, cap_start, cap_end; | ^~~~~~~~~ flow-nfilter.c:192:3: warning: ‘cap_end’ may be used uninitialized [-Wmaybe-uninitialized] 192 | ftio_set_cap_time(&ftio_out, cap_start, cap_end); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-nfilter.c:62:36: note: ‘cap_end’ was declared here 62 | uint32_t total_flows, cap_start, cap_end; | ^~~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c flow-import.c In file included from /usr/include/sys/types.h:25, from ./../lib/ftlib.h:32, from flow-import.c:30: /usr/include/features.h:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" | ^~~~~~~ In file included from /usr/include/stdio.h:980, from ./../lib/ftlib.h:42: In function ‘fread’, inlined from ‘format4’ at flow-import.c:1183:17: /usr/include/bits/stdio2.h:215:10: warning: ‘len’ may be used uninitialized [-Wmaybe-uninitialized] 215 | return __fread_chk (__ptr, sz, __size, __n, __stream); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-import.c: In function ‘format4’: flow-import.c:1062:16: note: ‘len’ was declared here 1062 | size_t rlen, len; | ^~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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' gcc -I./../lib -I. -I../lib -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 [-Wmaybe-uninitialized] 178 | ftio_set_cap_time(&ftio_out, cap_start, cap_end); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-mask.c:61:25: note: ‘cap_start’ was declared here 61 | uint32_t total_flows, cap_start, cap_end; | ^~~~~~~~~ flow-mask.c:178:3: warning: ‘cap_end’ may be used uninitialized [-Wmaybe-uninitialized] 178 | ftio_set_cap_time(&ftio_out, cap_start, cap_end); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ flow-mask.c:61:36: note: ‘cap_end’ was declared here 61 | uint32_t total_flows, cap_start, cap_end; | ^~~~~~~ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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:196:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] 196 | # 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-cat flow-cat.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-capture flow-capture.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-dscan flow-dscan.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-print flow-print.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-send flow-send.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-expire flow-expire.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-receive flow-receive.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-gen flow-gen.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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' gcc -I./../lib -I. -I../lib -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -c acllex.c acllex.c:1382:16: warning: ‘input’ defined but not used [-Wunused-function] 1382 | #else | ^ acllex.c:1339:17: warning: ‘yyunput’ defined but not used [-Wunused-function] 1339 | | ^ 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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-header flow-header.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-stat flow-stat.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o .libs/flow-stat flow-stat.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-xlate flow-xlate.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-split flow-split.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-merge flow-merge.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-tag flow-tag.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-fanout flow-fanout.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-import flow-import.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-nfilter flow-nfilter.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-report flow-report.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -I/usr/include/mysql -I/usr/include -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -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 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -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 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-mask flow-mask.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o .libs/flow-mask flow-mask.o ../lib/.libs/libft.so -lz make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' make[2]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' /bin/sh ../libtool --tag=CC --mode=link gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o flow-filter flow-filter.o aclyacc.o acllex.o acl2.o ../lib/libft.la -lz libtool: link: gcc -fPIE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -pie -Wl,-z -Wl,relro -Wl,--as-needed -Wl,-z -Wl,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes -o .libs/flow-filter flow-filter.o aclyacc.o acllex.o acl2.o ../lib/.libs/libft.so -lz /usr/bin/ld: warning: size of symbol `yylval' changed from 8 in aclyacc.o (symbol from plugin) to 48 in /tmp/ccCabHoE.ltrans0.ltrans.o /usr/bin/ld: warning: NOTE: size discrepancies can cause real problems. Investigation is advised. make[2]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/src' Making all in bin make[1]: Nothing to be done for 'all'. Making all in configs make[1]: Nothing to be done for 'all'. Making all in docs make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-cat.1.in > flow-cat.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-capture.1.in > flow-capture.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-dscan.1.in > flow-dscan.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-expire.1.in > flow-expire.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-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-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-header.1.in > flow-header.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-import.1.in > flow-import.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-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-report.1.in > flow-report.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-mask.1.in > flow-mask.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-rptfmt.1.in > flow-rptfmt.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-log2rrd.1.in > flow-log2rrd.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-rpt2rrd.1.in > flow-rpt2rrd.1 make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-capture.html.in > flow-capture.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-cat.html.in > flow-cat.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-dscan.html.in > flow-dscan.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-expire.html.in > flow-expire.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-fanout.html.in > flow-fanout.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-export.html.in > flow-export.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-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-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-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-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-print.html.in > flow-print.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-receive.html.in > flow-receive.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-send.html.in > flow-send.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-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-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-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-tag.html.in > flow-tag.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-nfilter.html.in > flow-nfilter.html make[1]: Leaving directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' make[1]: Entering directory '/builddir/build/BUILD/flow-tools-0.68.5.1/docs' sed -e 's,[@]sysconfdir[@],/etc/flow-tools,g' < flow-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.gl66KT + umask 022 + cd /builddir/build/BUILD + '[' /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64 '!=' / ']' + rm -rf /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64 ++ dirname /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64 + mkdir -p /builddir/build/BUILDROOT + mkdir /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64 + CFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer ' + export CFLAGS + CXXFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer ' + export CXXFLAGS + FFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -I/usr/lib64/gfortran/modules ' + export FFLAGS + FCFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fasynchronous-unwind-tables -fno-omit-frame-pointer -I/usr/lib64/gfortran/modules ' + export FCFLAGS + VALAFLAGS=-g + export VALAFLAGS + RUSTFLAGS='-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none -Cforce-frame-pointers=yes -Clink-arg=-Wl,-z,relro -Clink-arg=-Wl,-z,now -Clink-arg=-specs=/usr/lib/rpm/redhat/redhat-package-notes --cap-lints=warn' + export RUSTFLAGS + LDFLAGS='-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -Wl,--build-id=sha1 -specs=/usr/lib/rpm/redhat/redhat-package-notes ' + export LDFLAGS + LT_SYS_LIBRARY_PATH=/usr/lib64: + export LT_SYS_LIBRARY_PATH + CC=gcc + export CC + CXX=g++ + export CXX + cd flow-tools-0.68.5.1 + /usr/bin/make install DESTDIR=/builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.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-38.fc40.riscv64/usr/lib64" /bin/sh ../libtool --mode=install /usr/bin/install -p libft.la '/builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/lib64' libtool: install: /usr/bin/install -p .libs/libft.so.0.0.0 /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/lib64/libft.so.0.0.0 libtool: install: (cd /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.riscv64/usr/include" /usr/bin/install -p -m 644 ftlib.h ftqueue.h '/builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.riscv64/usr/bin" /usr/bin/install -p flow-log2rrd flow-rptfmt flow-rpt2rrd '/builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.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-38.fc40.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-38.fc40.riscv64/etc/flow-tools/cfg' test -z "/etc/flow-tools/sym" || /usr/bin/mkdir -p "/builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.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-38.fc40.riscv64/usr/share/flow-tools" /usr/bin/install -p asn2c gasn gprot gserv '/builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.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-38.fc40.riscv64 -type f -name '*.la' -exec rm -f '{}' ';' + mkdir -p /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/var/flow-tools + install -d /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/lib/systemd/system + install -m 0644 /builddir/build/SOURCES/flow-capture.service /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/lib/systemd/system/flow-capture.service + install -d /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/etc/sysconfig + install -m 0644 /builddir/build/SOURCES/flow-capture.sysconfig /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/etc/sysconfig/flow-capture + /usr/bin/find-debuginfo -j4 --strict-build-id -m -i --build-id-seed 0.68.5.1-38.fc40 --unique-debug-suffix -0.68.5.1-38.fc40.riscv64 --unique-debug-src-base flow-tools-0.68.5.1-38.fc40.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 find-debuginfo: starting Extracting debug info from 22 files DWARF-compressing 22 files sepdebugcrcfix: Updated 22 CRC32s, 0 CRC32s did match. Creating .debug symlinks for symlinks to ELF files Copying sources found by 'debugedit -l' to /usr/src/debug/flow-tools-0.68.5.1-38.fc40.riscv64 3754 blocks find-debuginfo: done + /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/check-rpaths + /usr/lib/rpm/redhat/brp-mangle-shebangs + /usr/lib/rpm/brp-remove-la-files + env /usr/lib/rpm/redhat/brp-python-bytecompile '' 1 0 -j4 + /usr/lib/rpm/redhat/brp-python-hardlink Processing files: flow-tools-0.68.5.1-38.fc40.riscv64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.rTWim7 + umask 022 + cd /builddir/build/BUILD + cd flow-tools-0.68.5.1 + DOCDIR=/builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools + export LC_ALL= + LC_ALL= + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/README /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/README.fork /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/COPYING /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/ChangeLog /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools + RPM_EC=0 ++ jobs -p + exit 0 Provides: config(flow-tools) = 0.68.5.1-38.fc40 flow-tools = 0.68.5.1-38.fc40 flow-tools(riscv-64) = 0.68.5.1-38.fc40 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) libc.so.6(GLIBC_2.33)(64bit) libc.so.6(GLIBC_2.34)(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) Recommends: group(flow-tools) user(flow-tools) Processing files: flow-tools-devel-0.68.5.1-38.fc40.riscv64 Provides: flow-tools-devel = 0.68.5.1-38.fc40 flow-tools-devel(riscv-64) = 0.68.5.1-38.fc40 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-38.fc40.riscv64 Provides: flow-tools-rrdtool = 0.68.5.1-38.fc40 flow-tools-rrdtool(riscv-64) = 0.68.5.1-38.fc40 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-38.fc40.riscv64 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.EcePp3 + umask 022 + cd /builddir/build/BUILD + cd flow-tools-0.68.5.1 + DOCDIR=/builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + export LC_ALL= + LC_ALL= + export DOCDIR + /usr/bin/mkdir -p /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-capture.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-cat.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-dscan.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-expire.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-export.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-fanout.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-filter.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-gen.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-header.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-import.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-log2rrd.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-mask.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-merge.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-nfilter.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-print.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-receive.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-report.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-rpt2rrd.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-rptfmt.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-send.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-split.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-stat.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-tag.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-tools-examples.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-tools.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/docs/flow-xlate.html /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/ChangeLog.old /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/TODO /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/INSTALL /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + cp -pr /builddir/build/BUILD/flow-tools-0.68.5.1/SECURITY /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64/usr/share/doc/flow-tools-docs + RPM_EC=0 ++ jobs -p + exit 0 Provides: flow-tools-docs = 0.68.5.1-38.fc40 flow-tools-docs(riscv-64) = 0.68.5.1-38.fc40 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-38.fc40.riscv64 Provides: flow-tools-debugsource = 0.68.5.1-38.fc40 flow-tools-debugsource(riscv-64) = 0.68.5.1-38.fc40 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-38.fc40.riscv64 Provides: debuginfo(build-id) = 082d99f2e32109c0dc3de50ee261bddabb308135 debuginfo(build-id) = 0dbf0261d7a923aee9637fb44db416321f844f67 debuginfo(build-id) = 21d66e5c3bce95a52f782639742e26f482a19698 debuginfo(build-id) = 281ecbd4468faf490e76e55407081a6564227e07 debuginfo(build-id) = 477897892b48374dc553083e8f362895f4b9c0c7 debuginfo(build-id) = 4b721399bf1408cbf48be2811879fd77f89ea755 debuginfo(build-id) = 5134cb73736147dd59a78c606cf0dd9ed3638957 debuginfo(build-id) = 5b396bdccaf9850ffe99436f6673efa7af2d7cda debuginfo(build-id) = 666f2f44fc45083e3cdc5d92e1381bb623d49abd debuginfo(build-id) = 6b6d3b143de0e36af4e4c76e011a627cd3ae9fe5 debuginfo(build-id) = 7e9cbcad42a0e3de9650c5f4cf42eb93d274ef59 debuginfo(build-id) = 81b20bff6422c758a4992d880f20d375c4ef2157 debuginfo(build-id) = 925e790f51d116d77caba30d7ce19ad5f37086e6 debuginfo(build-id) = 97fc7f926abb00959888342940abb5f95c5b916f debuginfo(build-id) = 9d05962746c760bc189596eb63818b13dabadb9a debuginfo(build-id) = a71c98fa8b93e45c2dba3e335f1a52edbc699457 debuginfo(build-id) = b04cd71e7f29c3acb5d0c9f50772d5964d951597 debuginfo(build-id) = b47b311b2c01c60a46b9fc9e157511e484e0004f debuginfo(build-id) = b6c8d80cff97b3f408e53f0043d354dc92bd8721 debuginfo(build-id) = c50f918c4642c68d6f7f2cb408a48e150a00507e debuginfo(build-id) = ef5e638d37ba1b8907504a485861a498f83f2dd2 debuginfo(build-id) = f854f6b655294ff2f22f88c885bf8472379bdb8a flow-tools-debuginfo = 0.68.5.1-38.fc40 flow-tools-debuginfo(riscv-64) = 0.68.5.1-38.fc40 libft.so.0.0.0-0.68.5.1-38.fc40.riscv64.debug()(64bit) 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-38.fc40 Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/flow-tools-0.68.5.1-38.fc40.riscv64 Wrote: /builddir/build/RPMS/flow-tools-docs-0.68.5.1-38.fc40.riscv64.rpm Wrote: /builddir/build/RPMS/flow-tools-devel-0.68.5.1-38.fc40.riscv64.rpm Wrote: /builddir/build/RPMS/flow-tools-rrdtool-0.68.5.1-38.fc40.riscv64.rpm Wrote: /builddir/build/RPMS/flow-tools-0.68.5.1-38.fc40.riscv64.rpm Wrote: /builddir/build/RPMS/flow-tools-debuginfo-0.68.5.1-38.fc40.riscv64.rpm Wrote: /builddir/build/RPMS/flow-tools-debugsource-0.68.5.1-38.fc40.riscv64.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.0sgW3V + 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-38.fc40.riscv64 + RPM_EC=0 ++ jobs -p + exit 0 Executing(rmbuild): /bin/sh -e /var/tmp/rpm-tmp.oyycpH + umask 022 + cd /builddir/build/BUILD + rm -rf /builddir/build/BUILD/flow-tools-0.68.5.1-SPECPARTS + rm -rf flow-tools-0.68.5.1 flow-tools-0.68.5.1.gemspec + RPM_EC=0 ++ jobs -p + exit 0 Child return code was: 0