- Timestamp:
- Dec 31, 2004, 7:11:43 PM (20 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 7e6d1fd
- Parents:
- 8232149
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zephyr.c
r74037d9 r667a1b6 583 583 ret=ZLocateUser(user,&numlocs,auth?ZAUTH:ZNOAUTH); 584 584 if (ret != ZERR_NONE) { 585 owl_function_error("Error locating user %s", user); 585 sprintf(out, "Error locating user %s\n", user); 586 return; 586 587 } 587 588 … … 596 597 ZGetLocations(&locations,&one); 597 598 myuser=short_zuser(user); 598 sprintf(out, "%s%s: %s\t%s\t%s\n", out, myuser, locations.host, locations.tty, locations.time); 599 sprintf(out, "%s%s: %s\t%s\t%s\n", out, myuser, 600 locations.host ? locations.host : "?", 601 locations.tty ? locations.tty : "?", 602 locations.time ? locations.time : "?"); 599 603 owl_free(myuser); 600 604 }
Note: See TracChangeset
for help on using the changeset viewer.