diff options
author | Ren Kararou <[email protected]> | 2024-12-31 02:18:40 -0600 |
---|---|---|
committer | Ren Kararou <[email protected]> | 2024-12-31 02:18:40 -0600 |
commit | f6b4ac41eec72a25c703c63f43bd1104049a405c (patch) | |
tree | 6fc60798944ac010c22ede4e2e9e33d6b97d39e0 /src/packet.c | |
parent | 810de0a90148d5dc7fe5919949220a00d14f6447 (diff) | |
download | nbtpd-f6b4ac41eec72a25c703c63f43bd1104049a405c.tar.gz nbtpd-f6b4ac41eec72a25c703c63f43bd1104049a405c.tar.bz2 nbtpd-f6b4ac41eec72a25c703c63f43bd1104049a405c.zip |
complete setup code; complete initial packet handling
Diffstat (limited to 'src/packet.c')
-rw-r--r-- | src/packet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/packet.c b/src/packet.c index 8f7a7e6..5bc8be6 100644 --- a/src/packet.c +++ b/src/packet.c @@ -1,6 +1,6 @@ #include "packet.h" -char* nbt_tftp_error_to_message(nbt_tftp_ecode error) { +char *nbd_tftp_error_to_message(nbd_tftp_ecode error) { switch (error) { case 0: return "ERROR"; |