===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
newlisp-10.7.5/configure-alt-264-	case "${nlc_arg}" in
newlisp-10.7.5/configure-alt:265:		--*=*) nlc_optarg=`echo "$nlc_arg" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
newlisp-10.7.5/configure-alt-266-		*) nlc_optarg= ;;
##############################################
newlisp-10.7.5/doc/newlisp_manual.html-15574-
newlisp-10.7.5/doc/newlisp_manual.html:15575:(set 'addr (address utf32)) <span class='arw'>&rarr;</span> 140592856255712
newlisp-10.7.5/doc/newlisp_manual.html-15576-
##############################################
newlisp-10.7.5/modules/mysql.lsp-229-            (if NEWLISP64
newlisp-10.7.5/modules/mysql.lsp:230:              (set 'field_addr (get-long (int (+ rdata (* field 8)))))
newlisp-10.7.5/modules/mysql.lsp:231:              (set 'field_addr (get-int (int (+ rdata (* field 4))))) )
newlisp-10.7.5/modules/mysql.lsp-232-            (if (= field_addr 0)
##############################################
newlisp-10.7.5/modules/postgres.lsp-311-;;
newlisp-10.7.5/modules/postgres.lsp:312:;; (PgSQL:query "select * from tbl where a=$1 or a=$2" 2 9)
newlisp-10.7.5/modules/postgres.lsp-313-;; (PgSQL:fetch-all) ; -> (("2" "4") ("9" "18"))
##############################################
newlisp-10.7.5/newlisp.c-739-initialize();
newlisp-10.7.5/newlisp.c:740:initDefaultInAddr(); 
newlisp-10.7.5/newlisp.c-741-
##############################################
newlisp-10.7.5/newlisp.c-870-        ADDR_FAMILY = AF_INET6;
newlisp-10.7.5/newlisp.c:871:        initDefaultInAddr(); 
newlisp-10.7.5/newlisp.c-872-        continue;
##############################################
newlisp-10.7.5/nl-sock.c-153-extern int opsys;
newlisp-10.7.5/nl-sock.c:154:void initDefaultInAddr()
newlisp-10.7.5/nl-sock.c-155-{
##############################################
newlisp-10.7.5/nl-sock.c-297-#ifdef WINDOWS
newlisp-10.7.5/nl-sock.c:298:int ipstrFromSockAddr(struct sockaddr * addr, char * host, int len)
newlisp-10.7.5/nl-sock.c-299-{
##############################################
newlisp-10.7.5/nl-sock.c-303-#else /* UNIX */
newlisp-10.7.5/nl-sock.c:304:int ipstrFromSockAddr(struct sockaddr * addr, char * host, int len)
newlisp-10.7.5/nl-sock.c-305-{
##############################################
newlisp-10.7.5/nl-sock.c-321-
newlisp-10.7.5/nl-sock.c:322:in_port_t portFromSockAddr(struct sockaddr * addr)
newlisp-10.7.5/nl-sock.c-323-{
##############################################
newlisp-10.7.5/nl-sock.c-663-   if ifAddr is defined as NULL or and empty string assume sockaddr at defaultIn
newlisp-10.7.5/nl-sock.c:664:   which is initialized to INADDR_ANY in initDefaultInAddr()
newlisp-10.7.5/nl-sock.c-665-*/
newlisp-10.7.5/nl-sock.c:666:int getHostAddr(struct sockaddr * address, int stype, char * ifAddr)
newlisp-10.7.5/nl-sock.c-667-{
##############################################
newlisp-10.7.5/nl-sock.c-700-    params = getString(params, &ifAddr);
newlisp-10.7.5/nl-sock.c:701:    if(getHostAddr((struct sockaddr *)defaultIn, 0, ifAddr) != 0)
newlisp-10.7.5/nl-sock.c-702-        return(netError(ERR_INET_HOST_UNKNOWN));
##############################################
newlisp-10.7.5/nl-sock.c-729-        }
newlisp-10.7.5/nl-sock.c:730:    initDefaultInAddr();
newlisp-10.7.5/nl-sock.c-731-    }
##############################################
newlisp-10.7.5/nl-sock.c-825-/* return address and port, IP number, address family taken fron address_sin  */
newlisp-10.7.5/nl-sock.c:826:ipstrFromSockAddr((struct sockaddr *)address_sin, IPaddress, STRADDR_LEN);
newlisp-10.7.5/nl-sock.c:827:return(portFromSockAddr((struct sockaddr *)address_sin));
newlisp-10.7.5/nl-sock.c-828-}
##############################################
newlisp-10.7.5/nl-sock.c-1025-
newlisp-10.7.5/nl-sock.c:1026:ipstrFromSockAddr((struct sockaddr *)remote, IPaddress, STRADDR_LEN);
newlisp-10.7.5/nl-sock.c:1027:portNo = portFromSockAddr((struct sockaddr *)remote);
newlisp-10.7.5/nl-sock.c-1028-
##############################################
newlisp-10.7.5/nl-sock.c-1149-    {
newlisp-10.7.5/nl-sock.c:1150:    if(getHostAddr(destination, 0, remoteHost) != 0)
newlisp-10.7.5/nl-sock.c-1151-        return(netError(ERR_INET_HOST_UNKNOWN));
##############################################
newlisp-10.7.5/nl-sock.c-1320-
newlisp-10.7.5/nl-sock.c:1321:if(getHostAddr((struct sockaddr *)local, stype, ifAddr) != 0)
newlisp-10.7.5/nl-sock.c-1322-    return(SOCKET_ERROR);
##############################################
newlisp-10.7.5/nl-sock.c-1337-    memset(&mcast, 0, sizeof(mcast));
newlisp-10.7.5/nl-sock.c:1338:    mcast.imr_multiaddr.s_addr = inet_addr(mcAddr);
newlisp-10.7.5/nl-sock.c-1339-    if(ADDR_FAMILY == AF_INET)
##############################################
newlisp-10.7.5/nl-sock.c-2104-#ifdef  MAC_OSX
newlisp-10.7.5/nl-sock.c:2105:        if(getHostAddr(whereto, SOCK_DGRAM, hostaddr) != 0)
newlisp-10.7.5/nl-sock.c-2106-#else
newlisp-10.7.5/nl-sock.c:2107:        if(getHostAddr(whereto, SOCK_RAW, hostaddr) != 0)
newlisp-10.7.5/nl-sock.c-2108-#endif
##############################################
newlisp-10.7.5/nl-sock.c-2149-                snprintf(buff, 64, "%s", strerror(errno));
newlisp-10.7.5/nl-sock.c:2150:                ipstrFromSockAddr((struct sockaddr *)whereto, IPaddress, STRADDR_LEN);
newlisp-10.7.5/nl-sock.c-2151-                link = addResult(&result, link, 
##############################################
newlisp-10.7.5/nl-sock.c-2198-
newlisp-10.7.5/nl-sock.c:2199:    ipstrFromSockAddr((struct sockaddr *)from, IPaddress, STRADDR_LEN);
newlisp-10.7.5/nl-sock.c-2200-    link = addResult(&result, link, 
##############################################
newlisp-10.7.5/protos.h-633-void initialize(void);
newlisp-10.7.5/protos.h:634:void initDefaultInAddr(void);
newlisp-10.7.5/protos.h-635-void linkCell(CELL * left, CELL * right, int linkFlag);
##############################################
newlisp-10.7.5/unix-lib.c-84-#ifndef EMSCRIPTEN
newlisp-10.7.5/unix-lib.c:85:initDefaultInAddr(); 
newlisp-10.7.5/unix-lib.c-86-
##############################################
newlisp-10.7.5/.pc/0009-Fix-shared-library-loading-for-modules.patch/modules/mysql.lsp-242-            (if NEWLISP64
newlisp-10.7.5/.pc/0009-Fix-shared-library-loading-for-modules.patch/modules/mysql.lsp:243:              (set 'field_addr (get-long (int (+ rdata (* field 8)))))
newlisp-10.7.5/.pc/0009-Fix-shared-library-loading-for-modules.patch/modules/mysql.lsp:244:              (set 'field_addr (get-int (int (+ rdata (* field 4))))) )
newlisp-10.7.5/.pc/0009-Fix-shared-library-loading-for-modules.patch/modules/mysql.lsp-245-            (if (= field_addr 0)
##############################################
newlisp-10.7.5/.pc/0009-Fix-shared-library-loading-for-modules.patch/modules/postgres.lsp-338-;;
newlisp-10.7.5/.pc/0009-Fix-shared-library-loading-for-modules.patch/modules/postgres.lsp:339:;; (PgSQL:query "select * from tbl where a=$1 or a=$2" 2 9)
newlisp-10.7.5/.pc/0009-Fix-shared-library-loading-for-modules.patch/modules/postgres.lsp-340-;; (PgSQL:fetch-all) ; -> (("2" "4") ("9" "18"))