This patch makes KisMAC compatible with the gpsd-protocol. While "traditional" gpsd also eats only '\r's other implementation's (like mine :-) expects clients to be standarts compliant. --md@hudora.de --- KisMAC-orig/GPSController.m Thu Oct 9 21:55:14 2003 +++ KisMAC/GPSController.m Thu Oct 9 21:57:04 2003 @@ -448,7 +448,7 @@ NSLog(@"GPS started successfully in GPSd mode.\n"); // enable raw mode and parse ourselves, quick hack - write(sockd, "R\r", 2); + write(sockd, "R\r\n", 3); while (_gpsShallRun) { [self gps_parse:sockd]; //actually once a sec should be enough, but sometimes we dont get any information. so do it more often.