Changeset 20 for trunk/src/sh_error.c
- Timestamp:
- Feb 13, 2006, 11:54:42 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/sh_error.c
r11 r20 115 115 *********************************************/ 116 116 117 int sh_error_verify (c har * s)117 int sh_error_verify (const char * s) 118 118 { 119 119 char * foo; … … 504 504 } 505 505 506 int sh_error_set_level(c har * str_in, int * facility)506 int sh_error_set_level(const char * str_in, int * facility) 507 507 { 508 508 register int i, j, f = BAD; 509 509 510 510 int old_facility; 511 c har * str_s = str_in;511 const char * str_s = str_in; 512 512 513 513 SL_ENTER(_("sh_error_set_level")); … … 636 636 /* set severity for TCP export 637 637 */ 638 int sh_error_setexport(c har * str_s)638 int sh_error_setexport(const char * str_s) 639 639 { 640 640 static int reject = 0; … … 653 653 extern void dlog_set_active(int flag); 654 654 655 int sh_error_setprint(c har * str_s)655 int sh_error_setprint(const char * str_s) 656 656 { 657 657 static int reject = 0; … … 676 676 /* set level for error logging 677 677 */ 678 int sh_error_setlog(c har * str_s)678 int sh_error_setlog(const char * str_s) 679 679 { 680 680 static int reject = 0; … … 691 691 /* set severity for syslog 692 692 */ 693 int sh_error_set_syslog (c har * str_s)693 int sh_error_set_syslog (const char * str_s) 694 694 { 695 695 static int reject = 0; … … 706 706 /* set severity for external 707 707 */ 708 int sh_error_set_external (c har * str_s)708 int sh_error_set_external (const char * str_s) 709 709 { 710 710 static int reject = 0; … … 722 722 /* set severity for database 723 723 */ 724 int sh_error_set_database (c har * str_s)724 int sh_error_set_database (const char * str_s) 725 725 { 726 726 static int reject = 0; … … 738 738 /* set severity for prelude 739 739 */ 740 int sh_error_set_prelude (c har * str_s)740 int sh_error_set_prelude (const char * str_s) 741 741 { 742 742 static int reject = 0; … … 784 784 /* set severity for mailing 785 785 */ 786 int sh_error_setseverity (c har * str_s)786 int sh_error_setseverity (const char * str_s) 787 787 { 788 788 static int reject = 0;
Note:
See TracChangeset
for help on using the changeset viewer.