1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-12 21:16:40 +00:00
termux-packages/packages/nmap/services.cc.patch
2022-01-26 12:46:48 +00:00

15 lines
584 B
Diff

--- ./services.cc.orig 2022-01-26 14:02:23.951928988 +0530
+++ ./services.cc 2022-01-26 14:03:01.921928973 +0530
@@ -133,9 +133,9 @@
ratio_format = 0;
if (nmap_fetchfile(filename, sizeof(filename), "nmap-services") != 1) {
- error("Unable to find nmap-services! Resorting to /etc/services");
+ error("Unable to find nmap-services! Resorting to @TERMUX_PREFIX@/etc/services");
#ifndef WIN32
- strcpy(filename, "/etc/services");
+ strcpy(filename, "@TERMUX_PREFIX@/etc/services");
#else
int len = GetSystemDirectory(filename, 480); // be safe
if(!len)