summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* fixed exception throwingZdenek Prikryl2009-07-241-2/+1
|
* Merge branch 'master' of git://git.fedorahosted.org/abrtZdenek Prikryl2009-07-244-55/+26
|\
| * remove superfluous copying in ExecVP paramsDenys Vlasenko2009-07-241-3/+2
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * remove GetGIDFromUID (two copies): getpwuid does the sameDenys Vlasenko2009-07-244-47/+12
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
| * simplify CAnalyzerCCpp::CreateHashDenys Vlasenko2009-07-241-5/+12
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | plugin can report to different bugzillas in different reportsZdenek Prikryl2009-07-241-9/+18
| |
* | proper deinit of libmagicZdenek Prikryl2009-07-241-2/+2
| |
* | simple fixZdenek Prikryl2009-07-241-1/+1
| |
* | Added first part of gui support in reportingZdenek Prikryl2009-07-2422-23/+90
| |
* | Added gui desriptions for reportersZdenek Prikryl2009-07-244-0/+574
|/
* style fix by popular (Zdenek's) demandDenys Vlasenko2009-07-231-6/+3
| | | | | | | | | | | | | | | Zdenek said: Ahother thing: commit "CCpp.cpp: fix handling of pipes when we fork children". You added piece code with while(1) and then there is a break inside the loop. Personally, I don't like infinite loops :-). There can be something like: ... int r; while ((r = read(pipeout[0], buff, sizeof(buff) - 1) > 0) { Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* typo fixesDenys Vlasenko2009-07-232-29/+28
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* added forgotten "throw" keywordsDenys Vlasenko2009-07-221-3/+3
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* CCpp.cpp: fix handling of pipes when we fork childrenDenys Vlasenko2009-07-221-122/+137
| | | | | | Also simplified read loops Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2009-07-221-15/+19
|\
| * fix several resource leaks on error pathsDenys Vlasenko2009-07-221-15/+19
| | | | | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | Utils: small fixJiri Moskovcak2009-07-221-1/+1
| |
* | CommLayer: added new signal "Warning"Jiri Moskovcak2009-07-222-0/+9
|/
* Fix build system for the case where configure was run with non-default prefixDenys Vlasenko2009-07-203-4/+9
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2009-07-201-1/+1
|\
| * Restore /proc/sys/kernel/core_pattern on error exit.Denys Vlasenko2009-07-151-1/+1
| | | | | | | | | | | | The bug was observed when dbus-abrt.conf is missing. Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* | CCpp: Made it more verboseJiri Moskovcak2009-07-201-2/+3
| |
* | Daemon: added threaded CreateReport -> breaks CLI!Jiri Moskovcak2009-07-205-5/+79
|/
* Use CABRTException instead of throwing std::stringJiri Moskovcak2009-07-071-1/+2
|
* Added dbus client to commlayerJiri Moskovcak2009-07-076-9/+78
|
* documentation after English language review from rlandman@redhat.comDaniel Novotny2009-07-039-76/+77
|
* fixed security issueZdenek Prikryl2009-06-308-30/+87
| | | | User can read only his debugdump directories
* Added new SOSreport plugin.Zdenek Prikryl2009-06-291-0/+5
|
* New SOSreport plugin. Written by Gavin Romig-Koch (gavin@redhat.com)Zdenek Prikryl2009-06-292-0/+165
|
* added commentsZdenek Prikryl2009-06-2911-64/+566
|
* fixed getting list of errors for rootZdenek Prikryl2009-06-291-5/+5
|
* there is no nees to init nss because of creating hashZdenek Prikryl2009-06-241-7/+2
|
* minor fixesZdenek Prikryl2009-06-242-1/+5
|
* security issuesZdenek Prikryl2009-06-231-5/+9
|
* Handle logs with NUL chars betterMichal Schmidt2009-06-203-42/+39
| | | | | | | | | | | It is not too rare that '\0' chars appear in /var/log/messages. I saw a real-life case where kerneloops would show a popup with the same old oops after every login. It turned out that there were NUL chars in the log which prevented kerneloops from seeing its marker, so it always treated the old oops in the log as new. This patch fixes it by always going through the whole known length of the buffer (not stopping on NUL chars) and using less string-oriented functions in fill_lineinfo().
* Use less memoryAnton Arapov2009-06-202-62/+79
| | | | | | | | | | | | * backport of 14e769d7093179943015ff88d0d3bdd65b2947f7 * Author: Michal Schmidt <mschmidt@redhat.com> The linepointer array is huge!: linepointer = calloc(buflen+1, sizeof(char*)); buflen can be as much as 32 MB, that makes it allocate 32M*8 = 256M on x86_64. Fix it by growing the allocation dynamically as we find interesting lines in the log.
* Really limit max size of log to read to 32 MBMichal Schmidt2009-06-201-3/+3
| | | | | Because of MAX/MIN confusion, the buffer size was always at least 32 MB, instead of at most 32 MB as intended.
* new default socket pathZdenek Prikryl2009-06-173-5/+6
|
* added man pages to Makefile.amDaniel Novotny2009-06-161-1/+4
|
* new manual pagesDaniel Novotny2009-06-169-4/+358
|
* Merge branch 'master' of ssh://git.fedorahosted.org/git/abrtJiri Moskovcak2009-06-151-4/+3
|\
| * fixed socket creationZdenek Prikryl2009-06-111-4/+3
| |
* | Fixed spec file, to work with new versionJiri Moskovcak2009-06-151-0/+1
|/
* Fixed build with python2.6Jiri Moskovcak2009-06-111-1/+1
|
* added support for reading conf file from ucer's home directoryZdenek Prikryl2009-06-101-3/+3
|
* abrt can take reporter's configuration file from reporting users's ↵Zdenek Prikryl2009-06-108-70/+81
| | | | $HOME/.abrt/ directory
* added more checks when someone wants to access a pluginZdenek Prikryl2009-06-102-4/+35
|
* new simple command line clientZdenek Prikryl2009-06-101-141/+0
|
* fixed updating guiZdenek Prikryl2009-06-031-1/+1
|
* updated debug messageZdenek Prikryl2009-06-031-1/+1
|