Browse code

bb11025: Correcting PUA URL in man pages and shared optparser.

Micah Snyder authored on 2018/01/25 09:17:31
Showing 3 changed files
... ...
@@ -329,12 +329,12 @@ Detect Possibly Unwanted Applications.
329 329
 Default: No
330 330
 .TP
331 331
 \fBExcludePUA CATEGORY\fR
332
-Exclude a specific PUA category. This directive can be used multiple times. See http://www.clamav.net/doc/pua.html for the complete list of PUA categories.
332
+Exclude a specific PUA category. This directive can be used multiple times. See http://www.clamav.net/documents/potentially-unwanted-applications-pua for the complete list of PUA categories.
333 333
 .br
334 334
 Default: disabled
335 335
 .TP
336 336
 \fBIncludePUA CATEGORY\fR
337
-Only include a specific PUA category. This directive can be used multiple times. See http://www.clamav.net/doc/pua.html for the complete list of PUA categories.
337
+Only include a specific PUA category. This directive can be used multiple times. See http://www.clamav.net/documents/potentially-unwanted-applications-pua for the complete list of PUA categories.
338 338
 .br
339 339
 Default: disabled
340 340
 .TP 
... ...
@@ -109,10 +109,10 @@ Collect and print execution statistics.
109 109
 Detect Possibly Unwanted Applications.
110 110
 .TP 
111 111
 \fB\-\-exclude\-pua=CATEGORY\fR
112
-Exclude a specific PUA category. This option can be used multiple times. See http://www.clamav.net/doc/pua.html for the complete list of PUA
112
+Exclude a specific PUA category. This option can be used multiple times. See http://www.clamav.net/documents/potentially-unwanted-applications-pua for the complete list of PUA
113 113
 .TP 
114 114
 \fB\-\-include\-pua=CATEGORY\fR
115
-Only include a specific PUA category. This option can be used multiple times. See http://www.clamav.net/doc/pua.html for the complete list of PUA
115
+Only include a specific PUA category. This option can be used multiple times. See http://www.clamav.net/documents/potentially-unwanted-applications-pua for the complete list of PUA
116 116
 .TP 
117 117
 \fB\-\-detect\-structured[=yes/no(*)]\fR
118 118
 Use the DLP (Data Loss Prevention) module to detect SSN and Credit Card numbers inside documents/text files.
... ...
@@ -1,5 +1,5 @@
1 1
 /*
2
- *  Copyright (C) 2015, 2017 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
2
+ *  Copyright (C) 2015-2018 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
3 3
  *  Copyright (C) 2008-2013 Sourcefire, Inc.
4 4
  *
5 5
  *  Author: Tomasz Kojm <tkojm@clamav.net>
... ...
@@ -304,7 +304,7 @@ const struct clam_option __clam_options[] = {
304 304
 
305 305
    { "DetectPUA", "detect-pua", 0, CLOPT_TYPE_BOOL, MATCH_BOOL, 0, NULL, 0, OPT_CLAMD | OPT_CLAMSCAN, "Detect Potentially Unwanted Applications.", "yes" },
306 306
 
307
-    { "ExcludePUA", "exclude-pua", 0, CLOPT_TYPE_STRING, NULL, -1, NULL, FLAG_MULTIPLE, OPT_CLAMD | OPT_CLAMSCAN, "Exclude a specific PUA category. This directive can be used multiple times.\nSee http://www.clamav.net/doc/pua.html for the complete list of PUA\ncategories.", "NetTool\nPWTool" },
307
+    { "ExcludePUA", "exclude-pua", 0, CLOPT_TYPE_STRING, NULL, -1, NULL, FLAG_MULTIPLE, OPT_CLAMD | OPT_CLAMSCAN, "Exclude a specific PUA category. This directive can be used multiple times.\nSee http://www.clamav.net/documents/potentially-unwanted-applications-pua for the complete list of PUA\ncategories.", "NetTool\nPWTool" },
308 308
 
309 309
     { "IncludePUA", "include-pua", 0, CLOPT_TYPE_STRING, NULL, -1, NULL, FLAG_MULTIPLE, OPT_CLAMD | OPT_CLAMSCAN, "Only include a specific PUA category. This directive can be used multiple\ntimes.", "Spy\nScanner\nRAT" },
310 310