Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ExeBy/exe_root.../usr/include
File: gd_errors.h
#ifndef GD_ERRORS_H
[0] Fix | Delete
#define GD_ERRORS_H
[1] Fix | Delete
[2] Fix | Delete
#ifndef _WIN32
[3] Fix | Delete
# include <syslog.h>
[4] Fix | Delete
#else
[5] Fix | Delete
/*
[6] Fix | Delete
* priorities/facilities are encoded into a single 32-bit quantity, where the
[7] Fix | Delete
* bottom 3 bits are the priority (0-7) and the top 28 bits are the facility
[8] Fix | Delete
* (0-big number). Both the priorities and the facilities map roughly
[9] Fix | Delete
* one-to-one to strings in the syslogd(8) source code. This mapping is
[10] Fix | Delete
* included in this file.
[11] Fix | Delete
*
[12] Fix | Delete
* priorities (these are ordered)
[13] Fix | Delete
*/
[14] Fix | Delete
# define LOG_EMERG 0 /* system is unusable */
[15] Fix | Delete
# define LOG_ALERT 1 /* action must be taken immediately */
[16] Fix | Delete
# define LOG_CRIT 2 /* critical conditions */
[17] Fix | Delete
# define LOG_ERR 3 /* error conditions */
[18] Fix | Delete
# define LOG_WARNING 4 /* warning conditions */
[19] Fix | Delete
# define LOG_NOTICE 5 /* normal but significant condition */
[20] Fix | Delete
# define LOG_INFO 6 /* informational */
[21] Fix | Delete
# define LOG_DEBUG 7 /* debug-level messages */
[22] Fix | Delete
#endif
[23] Fix | Delete
[24] Fix | Delete
/*
[25] Fix | Delete
LOG_EMERG system is unusable
[26] Fix | Delete
LOG_ALERT action must be taken immediately
[27] Fix | Delete
LOG_CRIT critical conditions
[28] Fix | Delete
LOG_ERR error conditions
[29] Fix | Delete
LOG_WARNING warning conditions
[30] Fix | Delete
LOG_NOTICE normal, but significant, condition
[31] Fix | Delete
LOG_INFO informational message
[32] Fix | Delete
LOG_DEBUG debug-level message
[33] Fix | Delete
*/
[34] Fix | Delete
[35] Fix | Delete
#define GD_ERROR LOG_ERR
[36] Fix | Delete
#define GD_WARNING LOG_WARNING
[37] Fix | Delete
#define GD_NOTICE LOG_NOTICE
[38] Fix | Delete
#define GD_INFO LOG_INFO
[39] Fix | Delete
#define GD_DEBUG LOG_DEBUG
[40] Fix | Delete
[41] Fix | Delete
void gd_error(const char *format, ...);
[42] Fix | Delete
void gd_error_ex(int priority, const char *format, ...);
[43] Fix | Delete
[44] Fix | Delete
#endif
[45] Fix | Delete
[46] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function