Skip to content

Commit c2b8a2c

Browse files
authored
Merge pull request #11 from themittenmac/fixes-for-errors-on-14.4
Fixed bug within parser in launchdXPC
2 parents c804ca8 + afd03f7 commit c2b8a2c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Src/launchdXPC/launchdXPC.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// launchdXPC.c
2+
// launchdXPC.m
33
// Created by Patrick Wardle
44
// Ported from code by Jonathan Levin
55
//
@@ -238,7 +238,7 @@ int getSubmittedPid(int pid) {
238238

239239
//end key line? (line: "}")
240240
// remove dictionary, as it's no longer needed
241-
if(YES == [obj hasSuffix:@"}"])
241+
if(YES == [obj isEqualToString:@"}"])
242242
{
243243
//remove
244244
[dictionaries removeLastObject];

Src/main.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import Foundation
1010

11-
let version = 0.6
11+
let version = 0.7
1212

1313
// Go through command line arguments and set accordingly
1414
let argManager = ArgManager(suppliedArgs:CommandLine.arguments)

0 commit comments

Comments
 (0)