Check-in [724909d7b7]
Overview
Comment:Use conf instead of config. For some reason, this works for me, but appears to not work on other systems.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 724909d7b715b814a2599daad70f1fa8adb28f48
User & Date: rmiller on 2009-03-30 19:17:05
Other Links: manifest | tags
Context
2009-03-30
19:25
Fix to the: packetbl.c: In function ?\226?\128?\152pbl_set_verdict?\226?\128?\153: packetbl.c:593: warning: passing argument 1 of ?\226?\128?\152nfq_set_verdict?\226?\128?\153 discards qualifiers from pointer target type packetbl.c:595: warning: passing argument 1 of ?\226?\128?\152nfq_set_verdict?\226?\128?\153 discards qualifiers from pointer target type errors. Hopefully this doesn't break anything. check-in: 846a8770cd user: rmiller tags: trunk
19:17
Use conf instead of config. For some reason, this works for me, but appears to not work on other systems. check-in: 724909d7b7 user: rmiller tags: trunk
2009-03-13
21:32
Bah. Let's retag this. check-in: 05df8e3e02 user: rmiller tags: trunk
Changes

Modified packetbl.c from [f10cbb0c22] to [72cafc699e].

402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
					statistics.cacheaccept++;
					break;
				default:
					actionstr="???";
					break;
			}
			if (!conf.quiet) {
				if (config.debug == 0) {
					syslog(LOG_INFO, "[Found in cache (%s)] [%s]",
						actionstr, msgbuf);
				} else {
					fprintf(stderr, "[Found in cache (%s)] [%s]",
						actionstr, msgbuf);
				}
			}







|







402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
					statistics.cacheaccept++;
					break;
				default:
					actionstr="???";
					break;
			}
			if (!conf.quiet) {
				if (conf.debug == 0) {
					syslog(LOG_INFO, "[Found in cache (%s)] [%s]",
						actionstr, msgbuf);
				} else {
					fprintf(stderr, "[Found in cache (%s)] [%s]",
						actionstr, msgbuf);
				}
			}