diff options
author | Robert Clausecker <fuz@FreeBSD.org> | 2024-11-10 13:45:46 +0100 |
---|---|---|
committer | Robert Clausecker <fuz@FreeBSD.org> | 2024-11-14 09:42:58 +0100 |
commit | 29d06d4836ff71faa468070886cf7184c0cb4eef (patch) | |
tree | b8d02cc04415a5a88088d934d4fee4bef09e9889 /sysutils/ods2/files/patch-direct.c | |
parent | sysutils/ods2: unbreak fetch, fix build on 15-CURRENT, define license (diff) |
sysutils/ods2: move to filesystems/ods2
- tool manipulates VMS file systems
- add timestamp to distinfo to satisfy post-receive hook
Approved by: portmgr (infrastructure blanket)
Diffstat (limited to 'sysutils/ods2/files/patch-direct.c')
-rw-r--r-- | sysutils/ods2/files/patch-direct.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/sysutils/ods2/files/patch-direct.c b/sysutils/ods2/files/patch-direct.c deleted file mode 100644 index c5109a408317..000000000000 --- a/sysutils/ods2/files/patch-direct.c +++ /dev/null @@ -1,24 +0,0 @@ ---- direct.c.orig 2001-08-31 18:01:07 UTC -+++ direct.c -@@ -136,12 +136,15 @@ int name_match(char *spec,int spec_len,char *dirent,in - register char sch = *name; - if (sch != '*') { - register char ech = *entry; -- if (sch != ech) if (toupper(sch) != toupper(ech)) -- if (sch == '%') { -- percent = MAT_NE; -- } else { -- break; -- } -+ if (sch != ech) { -+ if (toupper(sch) != toupper(ech)) { -+ if (sch == '%') { -+ percent = MAT_NE; -+ } else { -+ break; -+ } -+ } -+ } - } else { - break; - } |