- Timestamp:
- Nov 13, 2024, 2:47:31 PM (33 hours ago)
- Location:
- trunk/src
- Files:
-
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/minilzo.c
r455 r583 82 82 #else 83 83 # include <sys/types.h> 84 # if defined( STDC_HEADERS)84 # if defined(__STDC__) 85 85 # include <string.h> 86 86 # include <stdlib.h> 87 # endif88 # if defined(HAVE_STDDEF_H)89 87 # include <stddef.h> 90 # endif91 # if defined(HAVE_MEMORY_H)92 88 # include <memory.h> 93 89 # endif -
trunk/src/samhain.c
r579 r583 34 34 #include <errno.h> 35 35 36 37 #if TIME_WITH_SYS_TIME38 #include <sys/time.h>39 #include <time.h>40 #else41 36 #if HAVE_SYS_TIME_H 42 37 #include <sys/time.h> 43 #e lse38 #endif 44 39 #include <time.h> 45 #endif46 #endif47 40 48 41 #ifdef HAVE_MEMORY_H -
trunk/src/sh_entropy.c
r541 r583 30 30 #endif 31 31 32 #if TIME_WITH_SYS_TIME33 #include <sys/time.h>34 #include <time.h>35 #else36 32 #if HAVE_SYS_TIME_H 37 33 #include <sys/time.h> 38 #e lse34 #endif 39 35 #include <time.h> 40 #endif41 #endif42 43 36 44 37 #include <stdlib.h> -
trunk/src/sh_extern.c
r570 r583 74 74 #include <sys/wait.h> 75 75 76 #if TIME_WITH_SYS_TIME77 #include <sys/time.h>78 #include <time.h>79 #else80 76 #if HAVE_SYS_TIME_H 81 77 #include <sys/time.h> 82 #e lse78 #endif 83 79 #include <time.h> 84 #endif85 #endif86 87 80 88 81 #include "samhain.h" -
trunk/src/sh_getopt.c
r550 r583 624 624 fprintf (stdout, 625 625 _("This is samhain (%s), "\ 626 "(c) 1999-20 08Rainer Wichmann (http://la-samhna.de).\n"),626 "(c) 1999-2024 Rainer Wichmann (http://la-samhna.de).\n"), 627 627 VERSION); 628 628 fprintf (stdout, "%s",_("This software comes with ABSOLUTELY NO WARRANTY. ")); … … 714 714 fprintf (stdout, 715 715 _("This is samhain (%s), "\ 716 "(c) 1999-20 06Rainer Wichmann (http://la-samhna.de).\n"),716 "(c) 1999-2024 Rainer Wichmann (http://la-samhna.de).\n"), 717 717 VERSION); 718 718 fprintf (stdout, "%s",_("This software comes with ABSOLUTELY NO WARRANTY. ")); -
trunk/src/sh_hash.c
r580 r583 2882 2882 } 2883 2883 2884 #if TIME_WITH_SYS_TIME2885 #include <sys/time.h>2886 #include <time.h>2887 #else2888 2884 #if HAVE_SYS_TIME_H 2889 2885 #include <sys/time.h> 2890 #e lse2886 #endif 2891 2887 #include <time.h> 2892 #endif2893 #endif2894 2888 2895 2889 static int ListFullDetail = S_FALSE; -
trunk/src/sh_html.c
r481 r583 24 24 #include <stdlib.h> 25 25 26 #if TIME_WITH_SYS_TIME27 #include <sys/time.h>28 #include <time.h>29 #else30 26 #if HAVE_SYS_TIME_H 31 27 #include <sys/time.h> 32 #e lse28 #endif 33 29 #include <time.h> 34 #endif 35 #endif 30 36 31 #include <unistd.h> 37 32 -
trunk/src/sh_login_track.c
r562 r583 58 58 59 59 60 #if TIME_WITH_SYS_TIME61 #include <sys/time.h>62 #include <time.h>63 #else64 60 #if HAVE_SYS_TIME_H 65 61 #include <sys/time.h> 66 #e lse62 #endif 67 63 #include <time.h> 68 #endif69 #endif70 71 64 72 65 #define SH_LTRACK_VERSION 1 -
trunk/src/sh_mail.c
r481 r583 34 34 #if defined(SH_WITH_MAIL) 35 35 36 #if TIME_WITH_SYS_TIME37 #include <sys/time.h>38 #include <time.h>39 #else40 36 #if HAVE_SYS_TIME_H 41 37 #include <sys/time.h> 42 #e lse38 #endif 43 39 #include <time.h> 44 #endif45 #endif46 47 40 48 41 #ifdef HAVE_MEMORY_H -
trunk/src/sh_prelude.c
r542 r583 41 41 #include <sys/types.h> 42 42 43 #if TIME_WITH_SYS_TIME 44 45 # include <sys/time.h> 46 # include <time.h> 47 48 #else 49 50 # if HAVE_SYS_TIME_H 51 # include <sys/time.h> 52 # else 53 # include <time.h> 54 # endif 55 56 #endif 43 #if HAVE_SYS_TIME_H 44 #include <sys/time.h> 45 #endif 46 #include <time.h> 57 47 58 48 #include <unistd.h> -
trunk/src/sh_schedule.c
r481 r583 42 42 #endif 43 43 44 #if TIME_WITH_SYS_TIME45 #include <sys/time.h>46 #include <time.h>47 #else48 44 #if HAVE_SYS_TIME_H 49 45 #include <sys/time.h> 50 #e lse46 #endif 51 47 #include <time.h> 52 #endif53 #endif54 48 55 49 #include "samhain.h" -
trunk/src/sh_socket.c
r524 r583 33 33 #include <string.h> 34 34 35 #if TIME_WITH_SYS_TIME36 #include <sys/time.h>37 #include <time.h>38 #else39 35 #if HAVE_SYS_TIME_H 40 36 #include <sys/time.h> 41 #e lse37 #endif 42 38 #include <time.h> 43 #endif44 #endif45 39 46 40 #include "samhain.h" -
trunk/src/sh_srp.c
r560 r583 28 28 29 29 #ifdef USE_SRP_PROTOCOL 30 31 /* dont modify this, unless you know what you do 32 */ 33 #define SRP_GENERATOR_1024 "2" 34 #define SRP_MODULUS_1024_1 \ 35 _("f488fd584e49dbcd20b49de49107366b336c380d451d0f7c88b31c7c5b2d8ef6") 36 #define SRP_MODULUS_1024_2 \ 37 _("f3c923c043f0a55b188d8ebb558cb85d38d334fd7c175743a31d186cde33212c") 38 #define SRP_MODULUS_1024_3 \ 39 _("b52aff3ce1b1294018118d7c84a70a72d686c40319c807297aca950cd9969fab") 40 #define SRP_MODULUS_1024_4 \ 41 _("d00a509b0246d3083d66a45d419f9c7cbd894b221926baaba25ec355e92f78c7") 42 30 43 31 44 #if (defined (SH_WITH_CLIENT) || defined (SH_WITH_SERVER)) -
trunk/src/sh_suidchk.c
r543 r583 42 42 #if defined (SH_WITH_CLIENT) || defined (SH_STANDALONE) 43 43 44 #if TIME_WITH_SYS_TIME45 #include <sys/time.h>46 #include <time.h>47 #else48 44 #if HAVE_SYS_TIME_H 49 45 #include <sys/time.h> 50 #e lse46 #endif 51 47 #include <time.h> 52 #endif53 #endif54 48 55 49 #ifdef HAVE_DIRENT_H -
trunk/src/sh_unix.c
r580 r583 58 58 #endif 59 59 60 #if TIME_WITH_SYS_TIME61 #include <sys/time.h>62 #include <time.h>63 #else64 60 #if HAVE_SYS_TIME_H 65 61 #include <sys/time.h> 66 #e lse62 #endif 67 63 #include <time.h> 68 #endif69 #endif70 64 71 65 #ifdef HAVE_SYS_SELECT_H -
trunk/src/sh_utils.c
r570 r583 27 27 #include <unistd.h> 28 28 29 #if TIME_WITH_SYS_TIME30 #include <sys/time.h>31 #include <time.h>32 #else33 29 #if HAVE_SYS_TIME_H 34 30 #include <sys/time.h> 35 #e lse31 #endif 36 32 #include <time.h> 37 #endif38 #endif39 40 33 41 34 #include "samhain.h" -
trunk/src/sh_xfer_client.c
r544 r583 59 59 #endif 60 60 61 #if TIME_WITH_SYS_TIME62 #include <sys/time.h>63 #include <time.h>64 #else65 61 #if HAVE_SYS_TIME_H 66 62 #include <sys/time.h> 67 #e lse63 #endif 68 64 #include <time.h> 69 #endif70 #endif71 65 72 66 #ifdef HAVE_SYS_SELECT_H -
trunk/src/sh_xfer_server.c
r577 r583 59 59 #endif 60 60 61 #if TIME_WITH_SYS_TIME62 #include <sys/time.h>63 #include <time.h>64 #else65 61 #if HAVE_SYS_TIME_H 66 62 #include <sys/time.h> 67 #e lse63 #endif 68 64 #include <time.h> 69 #endif70 #endif71 72 /*73 #ifdef TM_IN_SYS_TIME74 #include <sys/time.h>75 #else76 #include <time.h>77 #endif78 */79 65 80 66 #ifdef HAVE_SYS_SELECT_H -
trunk/src/sh_xfer_syslog.c
r541 r583 32 32 #include <netinet/in.h> 33 33 34 #if TIME_WITH_SYS_TIME35 #include <sys/time.h>36 #include <time.h>37 #else38 34 #if HAVE_SYS_TIME_H 39 35 #include <sys/time.h> 40 #e lse36 #endif 41 37 #include <time.h> 42 #endif43 #endif44 38 45 39 #include <unistd.h> -
trunk/src/slib.c
r568 r583 35 35 #endif 36 36 37 #if TIME_WITH_SYS_TIME38 #include <sys/time.h>39 #include <time.h>40 #else41 37 #if HAVE_SYS_TIME_H 42 38 #include <sys/time.h> 43 #e lse39 #endif 44 40 #include <time.h> 45 #endif46 #endif47 41 48 42 #ifdef HAVE_MEMORY_H
Note:
See TracChangeset
for help on using the changeset viewer.