===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
owfs-3.2p4+dfsg1/Makefile.am-30-rpmcvs: preparerpm
owfs-3.2p4+dfsg1/Makefile.am:31:	@LN_S@ -f `pwd`/@PACKAGE@-@VERSION@.tar.gz ${RPMDIR}/SOURCES/@PACKAGE@-@VERSION@_cvs_`date +"%Y%m%d"`.tar.gz
owfs-3.2p4+dfsg1/Makefile.am-32-	cd ${RPMDIR}/SPECS && @RPMBUILD@ -ba @PACKAGE@.spec --define 'cvs 1'
##############################################
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_command.c-325-#else
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_command.c:326:	in_addr.s_addr = inet_addr(addr_str);
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_command.c-327-	if (in_addr.s_addr == (in_addr_t) - 1) {
##############################################
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_command.c-410-		}
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_command.c:411:		memcpy(&SINADDR(sa), addr, addr_len);
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_command.c-412-		SINPORT(sa) = htons((port[0] << 8) + port[1]);
##############################################
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_command.c-421-		}
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_command.c:422:		memcpy(&SIN6ADDR(sa), addr, addr_len);
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_command.c-423-		SINPORT(sa) = htons((port[0] << 8) + port[1]);
##############################################
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_command.c-497-#else
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_command.c:498:		in_addr.s_addr = inet_addr(addr_str);
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_command.c-499-		if (in_addr.s_addr == (in_addr_t) - 1) {
##############################################
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_command.c-503-
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_command.c:504:		SIN4ADDR(sa) = in_addr;
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_command.c-505-	}
##############################################
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_session.c-672-	if (SSFAM(&f->server_addr) == AF_INET6) {
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_session.c:673:		a = (uint8_t *) & SIN6ADDR(&f->server_addr);
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_session.c-674-		p = (uint8_t *) & SIN6PORT(&f->server_addr);
##############################################
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_session.c-680-	{
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_session.c:681:		a = (uint8_t *) & SIN4ADDR(&f->server_addr);
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_session.c-682-		p = (uint8_t *) & SIN4PORT(&f->server_addr);
##############################################
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_session.c-1192-		if (SAFAM(addr) == SSFAM(&f->client_addr)) {
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_session.c:1193:			if (memcmp(&SINADDR(&f->client_addr), &SINADDR(&addr), sizeof(SINADDR(&addr)))) {
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_session.c-1194-				reply(f, 425, "Error accepting connection; connection from invalid IP.");
##############################################
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_session.c-1497-		return 0;
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_session.c:1498:	if (memcmp(&cSINADDR(a), &cSINADDR(b), sizeof(cSINADDR(a))) != 0)
owfs-3.2p4+dfsg1/module/owftpd/src/c/ftp_session.c-1499-		return 0;
##############################################
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h-25-
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h:26:#define SIN4ADDR(_x_)   (((struct sockaddr_in *)(_x_))->sin_addr)
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h-27-#define SIN4PORT(_x_)   (((struct sockaddr_in *)(_x_))->sin_port)
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h:28:#define SIN6ADDR(_x_)   (((struct sockaddr_in6 *)(_x_))->sin6_addr)
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h-29-#define SIN6PORT(_x_)   (((struct sockaddr_in6 *)(_x_))->sin6_port)
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h:30:#define cSIN4ADDR(_x_)   (((const struct sockaddr_in *)(_x_))->sin_addr)
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h-31-#define cSIN4PORT(_x_)   (((const struct sockaddr_in *)(_x_))->sin_port)
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h:32:#define cSIN6ADDR(_x_)   (((const struct sockaddr_in6 *)(_x_))->sin6_addr)
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h-33-#define cSIN6PORT(_x_)   (((const struct sockaddr_in6 *)(_x_))->sin6_port)
##############################################
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h-35-#ifdef INET6
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h:36:#define SINADDR(_x_)    ((SAFAM(_x_)==AF_INET6) ? SIN6ADDR(_x_) : SIN4ADDR(_x_))
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h-37-#define SINPORT(_x_)    ((SAFAM(_x_)==AF_INET6) ? SIN6PORT(_x_) : SIN4PORT(_x_))
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h:38:#define cSINADDR(_x_)    ((cSAFAM(_x_)==AF_INET6) ? cSIN6ADDR(_x_) : cSIN4ADDR(_x_))
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h-39-#define cSINPORT(_x_)    ((cSAFAM(_x_)==AF_INET6) ? cSIN6PORT(_x_) : cSIN4PORT(_x_))
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h-40-#else
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h:41:#define SINADDR(_x_)    SIN4ADDR(_x_)
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h-42-#define SINPORT(_x_)    SIN4PORT(_x_)
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h:43:#define cSINADDR(_x_)    cSIN4ADDR(_x_)
owfs-3.2p4+dfsg1/module/owftpd/src/include/owftpd.h-44-#define cSINPORT(_x_)    cSIN4PORT(_x_)
##############################################
owfs-3.2p4+dfsg1/module/owlib/src/c/getaddrinfo.c-475-#endif
owfs-3.2p4+dfsg1/module/owlib/src/c/getaddrinfo.c:476:	res = gethostbyaddr(name, len, type);
owfs-3.2p4+dfsg1/module/owlib/src/c/getaddrinfo.c-477-	if (res) {
##############################################
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_client.c-20-
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_client.c:21:GOOD_OR_BAD ClientAddr(char *sname, char * default_port, struct connection_in *in)
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_client.c-22-{
##############################################
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_client.c-93-
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_client.c:94:void FreeClientAddr(struct connection_in *in)
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_client.c-95-{
##############################################
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_server.c-31-/* Prototypes */
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_server.c:32:static GOOD_OR_BAD ServerAddr(const char * default_port, struct connection_out *out);
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_server.c-33-static GOOD_OR_BAD ServerListen(struct connection_out *out);
##############################################
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_server.c-42-
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_server.c:43:static GOOD_OR_BAD ServerAddr(const char * default_port, struct connection_out *out)
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_server.c-44-{
##############################################
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_server.c-153-		if ( default_port != NULL ) { // one of the 2 cases above
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_server.c:154:			RETURN_BAD_IF_BAD( ServerAddr( default_port, out ) ) ;
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_server.c-155-			if ( GOOD(ServerListen(out)) ) {
##############################################
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_server.c-162-	// second time through, use ephemeral port
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_server.c:163:	RETURN_BAD_IF_BAD( ServerAddr( "0", out ) ) ;
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_net_server.c-164-
##############################################
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_tcp_free.c-28-	COM_close( connection ) ;
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_tcp_free.c:29:	FreeClientAddr( connection ) ;
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_tcp_free.c-30-}
##############################################
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_tcp_open.c-54-		}
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_tcp_open.c:55:		RETURN_BAD_IF_BAD( ClientAddr( DEVICENAME(connection), def_port, connection ) ) ;
owfs-3.2p4+dfsg1/module/owlib/src/c/ow_tcp_open.c-56-		pin->file_descriptor = FILE_DESCRIPTOR_BAD ;
##############################################
owfs-3.2p4+dfsg1/module/owlib/src/include/ow_functions.h-133-
owfs-3.2p4+dfsg1/module/owlib/src/include/ow_functions.h:134:GOOD_OR_BAD ClientAddr(char *sname, char * default_port, struct connection_in *in);
owfs-3.2p4+dfsg1/module/owlib/src/include/ow_functions.h-135-FILE_DESCRIPTOR_OR_ERROR ClientConnect(struct connection_in *in);
owfs-3.2p4+dfsg1/module/owlib/src/include/ow_functions.h:136:void FreeClientAddr(struct connection_in *in);
owfs-3.2p4+dfsg1/module/owlib/src/include/ow_functions.h-137-
##############################################
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster.cls-929-Dim lngAddress As Long
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster.cls:930:lngAddress = api_inet_addr(Host)
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster.cls-931-
##############################################
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster.cls-988-
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster.cls:989:lngAddress = api_inet_addr(Host)
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster.cls-990-
##############################################
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster.cls-1714-strRemoteHostIP = StringFromPointer(api_inet_ntoa(udtSockAddr.sin_addr))
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster.cls:1715:'lngResult = api_gethostbyaddr(udtSockAddr.sin_addr, 4&, AF_INET)
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster.cls-1716-
##############################################
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/CSocketMaster.cls-928-Dim lngAddress As Long
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/CSocketMaster.cls:929:lngAddress = api_inet_addr(Host)
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/CSocketMaster.cls-930-
##############################################
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/CSocketMaster.cls-987-
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/CSocketMaster.cls:988:lngAddress = api_inet_addr(Host)
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/CSocketMaster.cls-989-
##############################################
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/CSocketMaster.cls-1713-strRemoteHostIP = StringFromPointer(api_inet_ntoa(udtSockAddr.sin_addr))
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/CSocketMaster.cls:1714:'lngResult = api_gethostbyaddr(udtSockAddr.sin_addr, 4&, AF_INET)
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/CSocketMaster.cls-1715-
##############################################
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/Readme.txt-61-
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/Readme.txt:62:When you work with winsock you need to subclass a window to receive system's info from the socket. If you are familiar with the concept of subclassing on VB you should know that if you subclass a window and press then End button while in IDE you get a nice GPF and your system crashes. To solve this I use a code based on Paul Caton's WinSubHook2 that can be found at www.planet-source-code.com. If you wanna understand how my subclassing code works you have to understand his first. The asm code for the WndProc is in Subclass.asm file. This subclassing approach is not fully tested yet, so let me know if you get a GPF.
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/Readme.txt-63-
##############################################
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/Sample 3 - Winsock Control Clone/CSocketMaster.cls-928-Dim lngAddress As Long
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/Sample 3 - Winsock Control Clone/CSocketMaster.cls:929:lngAddress = api_inet_addr(Host)
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/Sample 3 - Winsock Control Clone/CSocketMaster.cls-930-
##############################################
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/Sample 3 - Winsock Control Clone/CSocketMaster.cls-987-
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/Sample 3 - Winsock Control Clone/CSocketMaster.cls:988:lngAddress = api_inet_addr(Host)
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/Sample 3 - Winsock Control Clone/CSocketMaster.cls-989-
##############################################
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/Sample 3 - Winsock Control Clone/CSocketMaster.cls-1713-strRemoteHostIP = StringFromPointer(api_inet_ntoa(udtSockAddr.sin_addr))
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/Sample 3 - Winsock Control Clone/CSocketMaster.cls:1714:'lngResult = api_gethostbyaddr(udtSockAddr.sin_addr, 4&, AF_INET)
owfs-3.2p4+dfsg1/module/ownet/VisualBasic/csocketmaster/CSocketMaster/Sample 3 - Winsock Control Clone/CSocketMaster.cls-1715-
##############################################
owfs-3.2p4+dfsg1/module/ownet/c/src/c/getaddrinfo.c-475-#endif
owfs-3.2p4+dfsg1/module/ownet/c/src/c/getaddrinfo.c:476:	res = gethostbyaddr(name, len, type);
owfs-3.2p4+dfsg1/module/ownet/c/src/c/getaddrinfo.c-477-	if (res) {
##############################################
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_browse.c-146-			if (in) {
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_browse.c:147:				FreeClientAddr(in);
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_browse.c-148-				BUSUNLOCKIN(in);
##############################################
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_connect.c-89-	LEVEL_DEBUG("FreeClientAddr\n");
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_connect.c:90:	FreeClientAddr(target);
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_connect.c-91-
##############################################
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_net_client.c-19-
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_net_client.c:20:int ClientAddr(char *sname, struct connection_in *in)
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_net_client.c-21-{
##############################################
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_net_client.c-59-
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_net_client.c:60:void FreeClientAddr(struct connection_in *in)
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_net_client.c-61-{
##############################################
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_server.c-44-		return -1;
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_server.c:45:	if (ClientAddr(in->name, in))
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_server.c-46-		return -1;
##############################################
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_server.c-57-		return -1;
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_server.c:58:	if (ClientAddr(in->name, in))
owfs-3.2p4+dfsg1/module/ownet/c/src/c/ow_server.c-59-		return -1;
##############################################
owfs-3.2p4+dfsg1/module/ownet/c/src/include/ow_functions.h-74-ssize_t tcp_read(int file_descriptor, void *vptr, size_t n, const struct timeval *ptv);
owfs-3.2p4+dfsg1/module/ownet/c/src/include/ow_functions.h:75:int ClientAddr(char *sname, struct connection_in *in);
owfs-3.2p4+dfsg1/module/ownet/c/src/include/ow_functions.h-76-FILE_DESCRIPTOR_OR_ERROR ClientConnect(struct connection_in *in);
owfs-3.2p4+dfsg1/module/ownet/c/src/include/ow_functions.h:77:void FreeClientAddr(struct connection_in *in);
owfs-3.2p4+dfsg1/module/ownet/c/src/include/ow_functions.h-78-
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssdotnet.pas-253-
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssdotnet.pas:254:{ Error return codes from gethostbyname() and gethostbyaddr()
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssdotnet.pas-255-  (when using the resolver). Note that these errors are
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas-661-
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas:662:  function GetAddr(f:integer): integer;
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas-663-  var
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas-679-            Result := WSAHOST_NOT_FOUND;
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas:680:            a4[1] := StrTonetAddr(IP);
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas-681-            if a4[1].s_addr = INADDR_ANY then
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas-736-    f1 := Family;
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas:737:  Result := GetAddr(f1);
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas-738-  if Result <> 0 then
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas-739-    if TwoPass then
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas:740:      Result := GetAddr(f2);
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas-741-end;
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas-774-  begin
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas:775:    a4[1] := StrTonetAddr(name);
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas-776-    if a4[1].s_addr = INADDR_ANY then
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas-822-  Result := IP;
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas:823:  a4[1] := StrToNetAddr(IP);
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/ssfpc.pas-824-  if a4[1].s_addr <> INADDR_ANY then
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas-859-
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas:860:  function GetAddr(const IP, port: string; Hints: TAddrInfo; var Sin: TVarSin): integer;
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas-861-  var
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas-918-      begin
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas:919:        Sin.sin_addr.s_addr := synsock.inet_addr(PChar(IP));
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas-920-        if Sin.sin_addr.s_addr = u_long(INADDR_NONE) then
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas-959-
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas:960:    r := GetAddr(IP, Port, Hints1, Sin1);
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas-961-    Result := r;
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas-965-      begin
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas:966:        r := GetAddr(IP, Port, Hints2, Sin2);
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas-967-        Result := r;
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas-1029-  begin
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas:1030:    IP := synsock.inet_addr(PChar(Name));
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas-1031-    if IP = u_long(INADDR_NONE) then
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas-1037-        begin
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas:1038:          PAdrPtr := PAPInAddr(RemoteHost^.h_addr_list);
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas-1039-          i := 0;
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas-1160-  begin
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas:1161:    IPn := synsock.inet_addr(PChar(IP));
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas-1162-    if IPn <> u_long(INADDR_NONE) then
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas-1165-      try
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas:1166:        RemoteHost := GetHostByAddr(@IPn, SizeOf(IPn), AF_INET);
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sslinux.pas-1167-        if RemoteHost <> nil then
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-638-
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas:639:{ Error return codes from gethostbyname() and gethostbyaddr()
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-640-  (when using the resolver). Note that these errors are
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-1121-
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas:1122:  function GetAddr(const IP, port: string; Hints: TAddrInfo; var Sin: TVarSin): integer;
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-1123-  var
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-1180-      begin
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas:1181:        Sin.sin_addr.s_addr := synsock.inet_addr(PChar(IP));
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-1182-        if Sin.sin_addr.s_addr = u_long(INADDR_NONE) then
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-1221-
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas:1222:    r := GetAddr(IP, Port, Hints1, Sin1);
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-1223-    Result := r;
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-1227-      begin
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas:1228:        r := GetAddr(IP, Port, Hints2, Sin2);
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-1229-        Result := r;
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-1291-  begin
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas:1292:    IP := synsock.inet_addr(PChar(Name));
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-1293-    if IP = u_long(INADDR_NONE) then
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-1299-        begin
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas:1300:          PAdrPtr := PAPInAddr(RemoteHost^.h_addr_list);
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-1301-          i := 0;
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-1422-  begin
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas:1423:    IPn := synsock.inet_addr(PChar(IP));
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-1424-    if IPn <> u_long(INADDR_NONE) then
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-1427-      try
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas:1428:        RemoteHost := GetHostByAddr(@IPn, SizeOf(IPn), AF_INET);
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/sswin32.pas-1429-        if RemoteHost <> nil then
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/synautil.pas-205- i.e. returns 'nobody@@somewhere.com' from '"someone" <nobody@@somewhere.com>'}
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/synautil.pas:206:function GetEmailAddr(const Value: string): string;
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/synautil.pas-207-
##############################################
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/synautil.pas-1098-
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/synautil.pas:1099:function GetEmailAddr(const Value: string): string;
owfs-3.2p4+dfsg1/module/ownet/pascal/synapse/synautil.pas-1100-var
##############################################
owfs-3.2p4+dfsg1/module/owshell/src/c/getaddrinfo.c-475-#endif
owfs-3.2p4+dfsg1/module/owshell/src/c/getaddrinfo.c:476:	res = gethostbyaddr(name, len, type);
owfs-3.2p4+dfsg1/module/owshell/src/c/getaddrinfo.c-477-	if (res) {
##############################################
owfs-3.2p4+dfsg1/module/owshell/src/c/ow_net.c-28-
owfs-3.2p4+dfsg1/module/owshell/src/c/ow_net.c:29:int ClientAddr(char *sname)
owfs-3.2p4+dfsg1/module/owshell/src/c/ow_net.c-30-{
##############################################
owfs-3.2p4+dfsg1/module/owshell/src/c/ow_server.c-28-	}
owfs-3.2p4+dfsg1/module/owshell/src/c/ow_server.c:29:	if (owserver_connection->name == NULL || ClientAddr(owserver_connection->name)) {
owfs-3.2p4+dfsg1/module/owshell/src/c/ow_server.c-30-		PRINT_ERROR("Could not connect with owserver %s\n", owserver_connection->name);
##############################################
owfs-3.2p4+dfsg1/module/owshell/src/include/owshell.h-266-ssize_t tcp_read(int file_descriptor, void *vptr, size_t n, const struct timeval *ptv);
owfs-3.2p4+dfsg1/module/owshell/src/include/owshell.h:267:int ClientAddr(char *sname);
owfs-3.2p4+dfsg1/module/owshell/src/include/owshell.h-268-int ClientConnect(void);
##############################################
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-38-		if test -f "${with_tclconfig}/tclConfig.sh" ; then
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:39:		    ac_cv_c_tclconfig=`(cd ${with_tclconfig}; pwd)`
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-40-		else
##############################################
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-63-		    if test -f "$i/unix/tclConfig.sh" ; then
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:64:			ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-65-			break
##############################################
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-73-			`ls -d /usr/local/lib 2>/dev/null` \
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:74:			`ls -d ${libdir} 2>/dev/null` \
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-75-			`ls -d /usr/contrib/lib 2>/dev/null` \
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:76:			`ls -d /usr/lib${LIBPOSTFIX} 2>/dev/null` \
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-77-			../../tcl \
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:78:			`ls -dr /usr/lib${LIBPOSTFIX}/tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:79:			`ls -dr /usr/lib${LIBPOSTFIX}/tcl[[8-9]].[[0-9]] 2>/dev/null` \
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:80:			`ls -dr /usr/lib${LIBPOSTFIX}/tcl[[8-9]].[[0-9]]* 2>/dev/null` \
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-81-			`ls -d /usr/lib 2>/dev/null` \
##############################################
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-86-		    if test -f "$i/tclConfig.sh" ; then
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:87:			ac_cv_c_tclconfig=`(cd $i; pwd)`
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-88-			break
##############################################
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-96-			${srcdir}/../tcl \
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:97:			`ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:98:			`ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]] 2>/dev/null` \
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:99:			`ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]]* 2>/dev/null` ; do
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-100-		    if test -f "$i/unix/tclConfig.sh" ; then
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:101:		    ac_cv_c_tclconfig=`(cd $i/unix; pwd)`
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-102-		    break
##############################################
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-156-		if test -f "${with_tkconfig}/tkConfig.sh" ; then
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:157:		    ac_cv_c_tkconfig=`(cd ${with_tkconfig}; pwd)`
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-158-		else
##############################################
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-178-		    if test -f "$i/unix/tkConfig.sh" ; then
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:179:			ac_cv_c_tkconfig=`(cd $i/unix; pwd)`
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-180-			break
##############################################
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-185-	    if test x"${ac_cv_c_tkconfig}" = x ; then
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:186:		for i in `ls -d ${libdir} 2>/dev/null` \
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-187-			`ls -d /usr/local/lib 2>/dev/null` \
##############################################
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-191-		    if test -f "$i/tkConfig.sh" ; then
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:192:			ac_cv_c_tkconfig=`(cd $i; pwd)`
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-193-			break
##############################################
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-200-			${srcdir}/../tk \
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:201:			`ls -dr ${srcdir}/../tk[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:202:			`ls -dr ${srcdir}/../tk[[8-9]].[[0-9]] 2>/dev/null` \
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:203:			`ls -dr ${srcdir}/../tk[[8-9]].[[0-9]]* 2>/dev/null` ; do
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-204-		    if test -f "$i/unix/tkConfig.sh" ; then
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:205:			ac_cv_c_tkconfig=`(cd $i/unix; pwd)`
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-206-			break
##############################################
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-871-	    if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:872:		system=MP-RAS-`awk '{print $3}' /etc/.relid'`
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-873-	    fi
##############################################
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-895-    UNSHARED_LIB_SUFFIX=""
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:896:    TCL_TRIM_DOTS='`echo ${VERSION} | tr -d .`'
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:897:    ECHO_VERSION='`echo ${VERSION}`'
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-898-    TCL_LIB_VERSIONS_OK=ok
##############################################
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-1382-		# The -pthread needs to go in the CFLAGS, not LIBS
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:1383:		LIBS=`echo $LIBS | sed s/-pthread//`
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-1384-		CFLAGS="$CFLAGS -pthread"
##############################################
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-1480-		CFLAGS="$CFLAGS -DTCL_THREAD_STACK_MIN=PTHREAD_STACK_MIN*64"
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:1481:		LIBS=`echo $LIBS | sed s/-lpthreads//`
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-1482-		if test "$GCC" = "yes" ; then
##############################################
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-2221-	    if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4:2222:		system=MP-RAS-`awk '{print $3}' /etc/.relid'`
owfs-3.2p4+dfsg1/module/owtcl/tcl.m4-2223-	    fi
##############################################
owfs-3.2p4+dfsg1/module/swig/perl5/perl5.m4-30-if test -n "$PERL"; then
owfs-3.2p4+dfsg1/module/swig/perl5/perl5.m4:31:	PERL=`(which $PERL) 2>/dev/null`
owfs-3.2p4+dfsg1/module/swig/perl5/perl5.m4-32-	# Make it possible to force a directory during cross-compilation
owfs-3.2p4+dfsg1/module/swig/perl5/perl5.m4-33-	if test -z "$PERL5DIR"; then
owfs-3.2p4+dfsg1/module/swig/perl5/perl5.m4:34:		PERL5DIR=`($PERL -e 'use Config; print $Config{archlib}, "\n";') 2>/dev/null`
owfs-3.2p4+dfsg1/module/swig/perl5/perl5.m4-35-	fi
##############################################
owfs-3.2p4+dfsg1/module/swig/perl5/perl5.m4-51-		AC_MSG_CHECKING(for Perl5 library)
owfs-3.2p4+dfsg1/module/swig/perl5/perl5.m4:52:		PERL5NAME=`($PERL -e 'use Config; $_=$Config{libperl}; s/^lib//; s/$Config{_a}$//; print $_, "\n"') 2>/dev/null`
owfs-3.2p4+dfsg1/module/swig/perl5/perl5.m4-53-		if test "$PERL5NAME" = "" ; then
##############################################
owfs-3.2p4+dfsg1/module/swig/perl5/perl5.m4-58-		AC_MSG_CHECKING(for Perl5 compiler options)
owfs-3.2p4+dfsg1/module/swig/perl5/perl5.m4:59: 		PERL5CCFLAGS=`($PERL -e 'use Config; print $Config{ccflags}, "\n"' | sed "s/-I/$ISYSTEM/") 2>/dev/null`
owfs-3.2p4+dfsg1/module/swig/perl5/perl5.m4-60- 		if test "$PERL5CCFLAGS" = "" ; then
##############################################
owfs-3.2p4+dfsg1/module/swig/python/python.m4-56-   AC_MSG_CHECKING(for Python cflags)
owfs-3.2p4+dfsg1/module/swig/python/python.m4:57:   PYTHONCFLAGS="`$PYTHONCONFIG --cflags 2>/dev/null`"
owfs-3.2p4+dfsg1/module/swig/python/python.m4-58-   if test -z "$PYTHONCFLAGS"; then
##############################################
owfs-3.2p4+dfsg1/module/swig/python/python.m4-65-   AC_MSG_CHECKING(for Python ldflags)
owfs-3.2p4+dfsg1/module/swig/python/python.m4:66:   PYTHONLDFLAGS="`$PYTHONCONFIG --ldflags 2>/dev/null`"
owfs-3.2p4+dfsg1/module/swig/python/python.m4-67-   if test -z "$PYTHONLDFLAGS"; then
##############################################
owfs-3.2p4+dfsg1/module/swig/python/python.m4-74-   AC_MSG_CHECKING(for Python libs)
owfs-3.2p4+dfsg1/module/swig/python/python.m4:75:   PYTHONLIBS="`$PYTHONCONFIG --libs 2>/dev/null`"
owfs-3.2p4+dfsg1/module/swig/python/python.m4-76-   if test -z "$PYTHONLIBS"; then
##############################################
owfs-3.2p4+dfsg1/module/swig/python/python.m4-84-   filehack="file__"
owfs-3.2p4+dfsg1/module/swig/python/python.m4:85:   PYVERSION=`($PYTHON -c "import string,operator,os.path; print operator.getitem(os.path.split(operator.getitem(os.path.split(string.__$filehack),0)),1)")`
owfs-3.2p4+dfsg1/module/swig/python/python.m4-86-   AC_MSG_RESULT($PYVERSION)
##############################################
owfs-3.2p4+dfsg1/module/swig/python/python.m4-88-   AC_MSG_CHECKING(for Python exec-prefix)
owfs-3.2p4+dfsg1/module/swig/python/python.m4:89:   PYTHONEPREFIX="`$PYTHONCONFIG --exec-prefix 2>/dev/null`"
owfs-3.2p4+dfsg1/module/swig/python/python.m4-90-   if test -z "$PYTHONEPREFIX"; then
##############################################
owfs-3.2p4+dfsg1/module/swig/python/python.m4-98-   #This seem to be the site-packages dir where files are installed.
owfs-3.2p4+dfsg1/module/swig/python/python.m4:99:   PYSITEDIR=`($PYTHON -c "from distutils.sysconfig import get_python_lib; print get_python_lib(plat_specific=1)") 2>/dev/null`
owfs-3.2p4+dfsg1/module/swig/python/python.m4-100-   if test -z "$PYSITEDIR"; then
##############################################
owfs-3.2p4+dfsg1/module/swig/python/python.m4-116-    AC_MSG_CHECKING(for Python prefix)
owfs-3.2p4+dfsg1/module/swig/python/python.m4:117:    PYPREFIX=`($PYTHON -c "import sys; print sys.prefix") 2>/dev/null`
owfs-3.2p4+dfsg1/module/swig/python/python.m4-118-    AC_MSG_RESULT($PYPREFIX)
owfs-3.2p4+dfsg1/module/swig/python/python.m4-119-    AC_MSG_CHECKING(for Python exec-prefix)
owfs-3.2p4+dfsg1/module/swig/python/python.m4:120:    PYEPREFIX=`($PYTHON -c "import sys; print sys.exec_prefix") 2>/dev/null`
owfs-3.2p4+dfsg1/module/swig/python/python.m4-121-    AC_MSG_RESULT($PYEPREFIX)
##############################################
owfs-3.2p4+dfsg1/module/swig/python/python.m4-130-    filehack="file__"
owfs-3.2p4+dfsg1/module/swig/python/python.m4:131:    PYVERSION=`($PYTHON -c "import string,operator,os.path; print operator.getitem(os.path.split(operator.getitem(os.path.split(string.__$filehack),0)),1)")`
owfs-3.2p4+dfsg1/module/swig/python/python.m4-132-    AC_MSG_RESULT($PYVERSION)
##############################################
owfs-3.2p4+dfsg1/module/swig/python/python.m4-136-    AC_MSG_CHECKING(for Python lib dir)
owfs-3.2p4+dfsg1/module/swig/python/python.m4:137:    PYLIBDIR=`($PYTHON -c "import sys; print sys.lib") 2>/dev/null`
owfs-3.2p4+dfsg1/module/swig/python/python.m4-138-    if test -z "$PYLIBDIR"; then
##############################################
owfs-3.2p4+dfsg1/module/swig/python/python.m4-161-    AC_MSG_CHECKING(for Python site-dir)
owfs-3.2p4+dfsg1/module/swig/python/python.m4:162:    PYSITEDIR=`($PYTHON -c "from distutils.sysconfig import get_python_lib; print get_python_lib(plat_specific=1)") 2>/dev/null`
owfs-3.2p4+dfsg1/module/swig/python/python.m4-163-    if test -z "$PYSITEDIR"; then
##############################################
owfs-3.2p4+dfsg1/release.pl-25-  printf "RELEASE -- updating configure.ac\n" ;
owfs-3.2p4+dfsg1/release.pl:26:  `/usr/bin/perl -i.old -pe 's\{VERSION_MAJOR=.*?\$\}\{VERSION_MAJOR=$maj}' configure.ac` ;
owfs-3.2p4+dfsg1/release.pl:27:  `/usr/bin/perl -i.old -pe 's\{VERSION_MINOR=.*?\$\}\{VERSION_MINOR=$min}' configure.ac` ;
owfs-3.2p4+dfsg1/release.pl:28:  `/usr/bin/perl -i.old -pe 's\{VERSION_PATCHLEVEL=.*?\$\}\{VERSION_PATCHLEVEL=$pat}' configure.ac` ;
owfs-3.2p4+dfsg1/release.pl-29-}
##############################################
owfs-3.2p4+dfsg1/src/man/htmlmaker-15-  for f in *.$e ; do
owfs-3.2p4+dfsg1/src/man/htmlmaker:16:    b=`basename $f .$e`
owfs-3.2p4+dfsg1/src/man/htmlmaker-17-    cp html/$f.html html/$b.html
##############################################
owfs-3.2p4+dfsg1/src/rpm/owfs.init-41-			}
owfs-3.2p4+dfsg1/src/rpm/owfs.init:42:			n=`expr $n + 1`
owfs-3.2p4+dfsg1/src/rpm/owfs.init-43-		fi
owfs-3.2p4+dfsg1/src/rpm/owfs.init:44:		i=`expr $i + 1`
owfs-3.2p4+dfsg1/src/rpm/owfs.init-45-	done
##############################################
owfs-3.2p4+dfsg1/src/rpm/owfs.init-66-#			}
owfs-3.2p4+dfsg1/src/rpm/owfs.init:67:#		n=`expr $n + 1`
owfs-3.2p4+dfsg1/src/rpm/owfs.init-68-#		fi
owfs-3.2p4+dfsg1/src/rpm/owfs.init:69:#		i=`expr $i + 1`
owfs-3.2p4+dfsg1/src/rpm/owfs.init-70-#	done
##############################################
owfs-3.2p4+dfsg1/src/rpm/owftpd.init-39-			}
owfs-3.2p4+dfsg1/src/rpm/owftpd.init:40:			n=`expr $n + 1`
owfs-3.2p4+dfsg1/src/rpm/owftpd.init-41-		fi
owfs-3.2p4+dfsg1/src/rpm/owftpd.init:42:		i=`expr $i + 1`
owfs-3.2p4+dfsg1/src/rpm/owftpd.init-43-	done
##############################################
owfs-3.2p4+dfsg1/src/rpm/owhttpd.init-39-			}
owfs-3.2p4+dfsg1/src/rpm/owhttpd.init:40:			n=`expr $n + 1`
owfs-3.2p4+dfsg1/src/rpm/owhttpd.init-41-		fi
owfs-3.2p4+dfsg1/src/rpm/owhttpd.init:42:		i=`expr $i + 1`
owfs-3.2p4+dfsg1/src/rpm/owhttpd.init-43-	done
##############################################
owfs-3.2p4+dfsg1/src/rpm/owserver.init-40-			}
owfs-3.2p4+dfsg1/src/rpm/owserver.init:41:			n=`expr $n + 1`
owfs-3.2p4+dfsg1/src/rpm/owserver.init-42-		fi
owfs-3.2p4+dfsg1/src/rpm/owserver.init:43:		i=`expr $i + 1`
owfs-3.2p4+dfsg1/src/rpm/owserver.init-44-	done
##############################################
owfs-3.2p4+dfsg1/src/scripts/treemaker.sh-11-    owfs -m $mountpoint --tester=$family
owfs-3.2p4+dfsg1/src/scripts/treemaker.sh:12:    dev=`ls $mountpoint | grep $family.`
owfs-3.2p4+dfsg1/src/scripts/treemaker.sh-13-    pushd $mountpoint > /dev/null
##############################################
owfs-3.2p4+dfsg1/src/scripts/usb/debian/server/owfs_server-14-#! /bin/sh
owfs-3.2p4+dfsg1/src/scripts/usb/debian/server/owfs_server:15:kill \`cat $PID_FILE\`
owfs-3.2p4+dfsg1/src/scripts/usb/debian/server/owfs_server-16-rm -f $PID_FILE
##############################################
owfs-3.2p4+dfsg1/src/scripts/windows/mDNSResponder-107.6.diff-743-+#endif
owfs-3.2p4+dfsg1/src/scripts/windows/mDNSResponder-107.6.diff:744:+  res = gethostbyaddr(name, len, type);
owfs-3.2p4+dfsg1/src/scripts/windows/mDNSResponder-107.6.diff-745-+  if(res) {
##############################################
owfs-3.2p4+dfsg1/debian/owftpd.init-42-    sleep 1
owfs-3.2p4+dfsg1/debian/owftpd.init:43:    if [ -f $PIDFILE ] && ! ps h `cat $PIDFILE` > /dev/null
owfs-3.2p4+dfsg1/debian/owftpd.init-44-    then
##############################################
owfs-3.2p4+dfsg1/debian/owhttpd.init-42-    sleep 1
owfs-3.2p4+dfsg1/debian/owhttpd.init:43:    if [ -f $PIDFILE ] && ! ps h `cat $PIDFILE` > /dev/null
owfs-3.2p4+dfsg1/debian/owhttpd.init-44-    then
##############################################
owfs-3.2p4+dfsg1/debian/owserver.init-40-    sleep 1
owfs-3.2p4+dfsg1/debian/owserver.init:41:    if [ -f $PIDFILE ] && ! ps h `cat $PIDFILE` > /dev/null
owfs-3.2p4+dfsg1/debian/owserver.init-42-    then
##############################################
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac-29-
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac:30:LT_CURRENT=`expr $VERSION_PATCHLEVEL - $OWFS_INTERFACE_AGE`
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac-31-LT_REVISION=$OWFS_INTERFACE_AGE
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac:32:LT_AGE=`expr $OWFS_BINARY_AGE - $OWFS_INTERFACE_AGE`
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac-33-
##############################################
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac-815-		# might contain staging_dir prefix when cross-compiling.
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac:816:		OWTCL_INSTALL_PATH="`echo ${TCL_PACKAGE_PATH} | cut -d' ' -f1`"
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac-817-		case "${host_cpu}-${host_os}" in
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac-818-			*-darwin*)
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac:819:				OWTCL_INSTALL_PATH="`echo ${TCL_BIN_DIR} | cut -d' ' -f1`"
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac-820-				;;
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac-821-			*)
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac:822:				OWTCL_INSTALL_PATH="`echo ${TCL_PACKAGE_PATH} | cut -d' ' -f1`"
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac-823-				;;
##############################################
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac-853-	while true; do
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac:854:		new_full_var="`eval echo $full_var`"
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac-855-		if test "x$new_full_var"="x$full_var"; then break; fi
##############################################
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac-1189-
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac:1190:		LIBAVAHI_CFLAGS=`$LIBAVAHI_CONFIG --cflags`
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac:1191:		LIBAVAHI_LIBS=`$LIBAVAHI_CONFIG --libs`
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac-1192-
##############################################
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac-1346-	if test "X${LIBFTDI_CONFIG}" != "X" ; then
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac:1347:		LIBFTDI_CFLAGS=`$LIBFTDI_CONFIG --cflags`
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac:1348:		LIBFTDI_LIBS=`$LIBFTDI_CONFIG --libs`
owfs-3.2p4+dfsg1/.pc/deb-specific-tcltk-path.patch/configure.ac-1349-
##############################################
owfs-3.2p4+dfsg1/configure.ac-29-
owfs-3.2p4+dfsg1/configure.ac:30:LT_CURRENT=`expr $VERSION_PATCHLEVEL - $OWFS_INTERFACE_AGE`
owfs-3.2p4+dfsg1/configure.ac-31-LT_REVISION=$OWFS_INTERFACE_AGE
owfs-3.2p4+dfsg1/configure.ac:32:LT_AGE=`expr $OWFS_BINARY_AGE - $OWFS_INTERFACE_AGE`
owfs-3.2p4+dfsg1/configure.ac-33-
##############################################
owfs-3.2p4+dfsg1/configure.ac-815-		# might contain staging_dir prefix when cross-compiling.
owfs-3.2p4+dfsg1/configure.ac:816:		OWTCL_INSTALL_PATH="`echo ${TCL_PACKAGE_PATH} | cut -d' ' -f1`"
owfs-3.2p4+dfsg1/configure.ac-817-		case "${host_cpu}-${host_os}" in
owfs-3.2p4+dfsg1/configure.ac-818-			*-darwin*)
owfs-3.2p4+dfsg1/configure.ac:819:				OWTCL_INSTALL_PATH="`echo ${TCL_BIN_DIR} | cut -d' ' -f1`"
owfs-3.2p4+dfsg1/configure.ac-820-				;;
owfs-3.2p4+dfsg1/configure.ac-821-			*)
owfs-3.2p4+dfsg1/configure.ac:822:				OWTCL_INSTALL_PATH="`echo ${TCL_PACKAGE_PATH} | cut -d' ' -f1`"
owfs-3.2p4+dfsg1/configure.ac-823-				;;
##############################################
owfs-3.2p4+dfsg1/configure.ac-853-	while true; do
owfs-3.2p4+dfsg1/configure.ac:854:		new_full_var="`eval echo $full_var`"
owfs-3.2p4+dfsg1/configure.ac-855-		if test "x$new_full_var"="x$full_var"; then break; fi
##############################################
owfs-3.2p4+dfsg1/configure.ac-1189-
owfs-3.2p4+dfsg1/configure.ac:1190:		LIBAVAHI_CFLAGS=`$LIBAVAHI_CONFIG --cflags`
owfs-3.2p4+dfsg1/configure.ac:1191:		LIBAVAHI_LIBS=`$LIBAVAHI_CONFIG --libs`
owfs-3.2p4+dfsg1/configure.ac-1192-
##############################################
owfs-3.2p4+dfsg1/configure.ac-1346-	if test "X${LIBFTDI_CONFIG}" != "X" ; then
owfs-3.2p4+dfsg1/configure.ac:1347:		LIBFTDI_CFLAGS=`$LIBFTDI_CONFIG --cflags`
owfs-3.2p4+dfsg1/configure.ac:1348:		LIBFTDI_LIBS=`$LIBFTDI_CONFIG --libs`
owfs-3.2p4+dfsg1/configure.ac-1349-