[[project @ 10] JesusFreke@JesusFreke.com**20090106034629 Ignore-this: 5e826d6205b84ca3200babf1ce3ae0e9 Fixed regex to properly match only the processes with the same id that is being searched for ] hunk ./Superuser/src/com/koushikdutta/superuser/SuperuserRequestActivity.java 64 - String pattern = String.format("app_%d+(.*?)\n", id); - Pattern regex = Pattern.compile(pattern); + String pattern = String.format("^app_%d+\\s(.*?)\n", id); + Pattern regex = Pattern.compile(pattern, Pattern.MULTILINE);