Skip to content
Snippets Groups Projects
Commit b2ba221f authored by deuce's avatar deuce
Browse files

Ignore Process Serial Number on macOS

parent ac0f1195
No related branches found
No related tags found
No related merge requests found
......@@ -1543,6 +1543,12 @@ int main(int argc, char **argv)
break;
}
break;
#ifdef __DARWIN__
case 'P':
if (strncmp("-psn_", argv[i], 5) == 0)
break;
goto USAGE;
#endif
case 'R':
conn_type=CONN_TYPE_RLOGIN;
override_conn=TRUE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment