Changeset 9c3bba0 in mainline for uspace/app/websrv/websrv.c
- Timestamp:
- 2011-12-10T23:10:41Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0d29e0cd, 899f1a9, cf155ed, d9f8dd13
- Parents:
- 4a4cc150
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/websrv/websrv.c
r4a4cc150 r9c3bba0 39 39 #include <sys/types.h> 40 40 #include <sys/stat.h> 41 #include <stdlib.h> 41 42 #include <fcntl.h> 42 43 … … 171 172 if (fd < 0) { 172 173 printf("File '%s' not found.\n", fname); 174 free(fname); 173 175 return ENOENT; 174 176 } 177 178 free(fname); 175 179 176 180 rc = send_response(conn_sd, ok_msg);
Note:
See TracChangeset
for help on using the changeset viewer.