Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
(13) |
Apr
(5) |
May
(20) |
Jun
(37) |
Jul
(29) |
Aug
(15) |
Sep
(48) |
Oct
(56) |
Nov
(96) |
Dec
(103) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(63) |
Feb
(191) |
Mar
(186) |
Apr
(97) |
May
(116) |
Jun
(151) |
Jul
(107) |
Aug
(80) |
Sep
(92) |
Oct
(47) |
Nov
(52) |
Dec
(47) |
2004 |
Jan
(38) |
Feb
(147) |
Mar
(193) |
Apr
(62) |
May
(65) |
Jun
(42) |
Jul
(51) |
Aug
(108) |
Sep
(123) |
Oct
(57) |
Nov
(266) |
Dec
(290) |
2005 |
Jan
(230) |
Feb
(112) |
Mar
(91) |
Apr
(90) |
May
(120) |
Jun
(108) |
Jul
(85) |
Aug
(65) |
Sep
(126) |
Oct
(101) |
Nov
(101) |
Dec
(42) |
2006 |
Jan
(44) |
Feb
(64) |
Mar
(150) |
Apr
(70) |
May
(135) |
Jun
(101) |
Jul
(96) |
Aug
(54) |
Sep
(52) |
Oct
(105) |
Nov
(73) |
Dec
(69) |
2007 |
Jan
(141) |
Feb
(91) |
Mar
(93) |
Apr
(129) |
May
(104) |
Jun
(123) |
Jul
(77) |
Aug
(37) |
Sep
(87) |
Oct
(41) |
Nov
(86) |
Dec
(77) |
2008 |
Jan
(115) |
Feb
(82) |
Mar
(83) |
Apr
(53) |
May
(39) |
Jun
(74) |
Jul
(54) |
Aug
(71) |
Sep
(40) |
Oct
(43) |
Nov
(56) |
Dec
(44) |
2009 |
Jan
(24) |
Feb
(75) |
Mar
(91) |
Apr
(30) |
May
(102) |
Jun
(68) |
Jul
(54) |
Aug
(53) |
Sep
(96) |
Oct
(36) |
Nov
(44) |
Dec
(41) |
2010 |
Jan
(25) |
Feb
(11) |
Mar
(37) |
Apr
(55) |
May
(27) |
Jun
(32) |
Jul
(36) |
Aug
(15) |
Sep
(7) |
Oct
(37) |
Nov
(15) |
Dec
(31) |
2011 |
Jan
(18) |
Feb
(17) |
Mar
(22) |
Apr
(27) |
May
(23) |
Jun
(19) |
Jul
(16) |
Aug
(18) |
Sep
(10) |
Oct
(6) |
Nov
(14) |
Dec
(18) |
2012 |
Jan
(14) |
Feb
(5) |
Mar
(18) |
Apr
(37) |
May
(20) |
Jun
(59) |
Jul
(58) |
Aug
(20) |
Sep
(18) |
Oct
(23) |
Nov
(24) |
Dec
(11) |
2013 |
Jan
(16) |
Feb
(8) |
Mar
(28) |
Apr
(12) |
May
(18) |
Jun
(24) |
Jul
(21) |
Aug
(40) |
Sep
(169) |
Oct
(231) |
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
1
(1) |
2
(7) |
3
(1) |
4
(1) |
5
(1) |
6
(1) |
7
|
8
|
9
(2) |
10
|
11
|
12
|
13
|
14
(1) |
15
(1) |
16
|
17
|
18
|
19
(1) |
20
(1) |
21
(8) |
22
(1) |
23
(3) |
24
|
25
|
26
|
27
(1) |
28
(6) |
29
(4) |
30
(1) |
31
(1) |
|
From: SourceForge.net <noreply@so...> - 2008-10-19 13:42:39
|
Patches item #2179754, was opened at 2008-10-19 15:42 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=2179754&group_id=29880 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Bugfix Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: mumpitz (ohauer) Assigned to: Nobody/Anonymous (nobody) Summary: [patch] Exception in check_nt.c Initial Comment: routine CHECK_USEDDISKSPACE in check_nt.c do not handle correct unknown/missing drives. # /usr/local/libexec/nagios/check_nt -H HOSTNAME -p 12489 -v USEDDISKSPACE -l d Segmentation fault: 11 (core dumped) # /usr/local/libexec/nagios/check_nt -H HOSTNAME -p 12489 -v USEDDISKSPACE -l e Segmentation fault: 11 (core dumped) # echo "None&4&d" | nc HOSTNAME 12489 UNKNOWN: Drive is not a fixed drive: d: (it is a cdrom drive) # echo "None&4&e" | nc HOSTNAME 12489 UNKNOWN: Could not get free space for: e: e: reason: 3: The system cannot find the path specified. ################################# snipped from the code: ################################# case CHECK_USEDDISKSPACE: fetch_data (server_address, server_port, send_buffer); /* --> no exception handling */ free_disk_space=atof(strtok(recv_buffer,"&")); total_disk_space=atof(strtok(NULL,"&")); The patch is maybe not optimal, but prevents segfault ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=2179754&group_id=29880 |