Changeset 1127
- Timestamp:
- 02/17/07 17:19:37 (2 years ago)
- Files:
-
- honeytrap/trunk/ChangeLog (modified) (1 diff)
- honeytrap/trunk/configure (modified) (1 diff)
- honeytrap/trunk/configure.in (modified) (1 diff)
- honeytrap/trunk/src/ctrl.c (modified) (1 diff)
- honeytrap/trunk/src/modules/htm_tftpDownload.c (modified) (1 diff)
- honeytrap/trunk/src/readconf.c (modified) (1 diff)
- honeytrap/trunk/src/util.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
honeytrap/trunk/ChangeLog
r1125 r1127 1 Version 0.6. 4.11 Version 0.6.5 2 2 - Some compile errors fixed 3 3 - Configure script changed to run on MacOS X honeytrap/trunk/configure
r1124 r1127 20424 20424 _ACEOF 20425 20425 20426 LDFLAGS="${LDFLAGS} -L/sw/lib" 20427 extra_incl=-I/sw/include 20426 LDFLAGS="${LDFLAGS} -undefined suppress" 20428 20427 esac 20429 20428 honeytrap/trunk/configure.in
r1124 r1127 126 126 AC_DEFINE(MACOS,,[Define if MACOS]) 127 127 AC_DEFINE(BROKEN_SIOCGIFMTU) 128 LDFLAGS="${LDFLAGS} -L/sw/lib" 129 extra_incl=-I/sw/include 128 LDFLAGS="${LDFLAGS} -undefined suppress" 130 129 esac 131 130 honeytrap/trunk/src/ctrl.c
r1125 r1127 124 124 } else if (pid != 0) { 125 125 DEBUG_FPRINTF(stdout, " Successfully changed into daemon environment.\n"); 126 fprintf(stdout, "\nhoneytrap v%s Copyright (C) 2005-200 6Tillmann Werner <tillmann.werner@gmx.de>\n", VERSION);126 fprintf(stdout, "\nhoneytrap v%s Copyright (C) 2005-2007 Tillmann Werner <tillmann.werner@gmx.de>\n", VERSION); 127 127 fflush(stdout); 128 128 exit(0); honeytrap/trunk/src/modules/htm_tftpDownload.c
r1125 r1127 234 234 /* read incoming data from socket */ 235 235 while (!received_last_packet&& ((errno == EINTR) || FD_ISSET(data_sock_fd, &rfds))) { 236 if ((bytes_read = recvfrom(data_sock_fd, rbuf, 516, 0, (struct sockaddr *) &from, &fromlen)) == -1) {236 if ((bytes_read = recvfrom(data_sock_fd, rbuf, 516, 0, (struct sockaddr *) &from, (socklen_t *) &fromlen)) == -1) { 237 237 logmsg(LOG_ERR, 1, "TFTP download error - Receiving data from remote host failed.\n"); 238 238 return(-1); honeytrap/trunk/src/readconf.c
r1119 r1127 322 322 323 323 fprintf(stdout, " Initialization complete.\n"); 324 logmsg(LOG_ERR, 0, "\nhoneytrap v%s Copyright (C) 2005-200 6Tillmann Werner <tillmann.werner@gmx.de>\n", VERSION);324 logmsg(LOG_ERR, 0, "\nhoneytrap v%s Copyright (C) 2005-2007 Tillmann Werner <tillmann.werner@gmx.de>\n", VERSION); 325 325 326 326 first_init = 0; honeytrap/trunk/src/util.c
r1126 r1127 126 126 (*parse_string != '\n')) { 127 127 retval.offset++; 128 *parse_string++;128 (*parse_string)++; 129 129 } 130 130 *parse_string = 0;
